Click or drag to resize
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.Models
Assembly: Quickblox.Sdk.Xamarin (in Quickblox.Sdk.Xamarin.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public Jid(
	string domain,
	string node,
	string resource = null
)

Parameters

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
ExceptionCondition
ArgumentNullExceptionThe domain parameter is null.
ArgumentExceptionThe domain parameter is the empty string.
See Also