| Jid Constructor (String, String, String) |
Initializes a new instance of the JID class using the specified domain,
node and optionally resource.
Namespace: Quickblox.Sdk.Modules.ChatXmppModule.ModelsAssembly: Quickblox.Sdk.Xamarin (in Quickblox.Sdk.Xamarin.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic Jid(
string domain,
string node,
string resource = null
)
Public Sub New (
domain As String,
node As String,
Optional resource As String = Nothing
)
public:
Jid(
String^ domain,
String^ node,
String^ resource = nullptr
)
new :
domain : string *
node : string *
?resource : string
(* Defaults:
let _resource = defaultArg resource null
*)
-> JidParameters
- domain
- Type: SystemString
The domain of the JID. - node
- Type: SystemString
The node of the JID. - resource (Optional)
- Type: SystemString
The resource of the JID. This may be omitted.
Exceptions
See Also