IGHARemoteObjectCreateObjectAsync Method |
Creates an object of the specified class name as a child of the calling object
Namespace:
RemoteRESTLib
Assembly:
GHARemoteRESTLib (in GHARemoteRESTLib.dll) Version: 1.0.14
Syntax Task<IGHARemoteObject> CreateObjectAsync(
string className,
string Name = ""
)
Function CreateObjectAsync (
className As String,
Optional Name As String = ""
) As Task(Of IGHARemoteObject)
Task<IGHARemoteObject^>^ CreateObjectAsync(
String^ className,
String^ Name = L""
)
abstract CreateObjectAsync :
className : string *
?Name : string
(* Defaults:
let _Name = defaultArg Name ""
*)
-> Task<IGHARemoteObject>
Parameters
- className
- Type: SystemString
.NET class name of the object to be created - Name (Optional)
- Type: SystemString
Name to be assigned to the object. If not specified, a unique name based on the class name is created
Return Value
Type:
TaskIGHARemoteObjectCreated object
See Also