Conversation.BeginSendContextData method
This is used to send application context type and data to the conversation. The application Id has to be registered on the caller side. The context data will be sent in raw foramts
Namespace: Microsoft.Lync.Model.Conversation
Assembly: Microsoft.Lync.Model (in Microsoft.Lync.Model.dll)
Syntax
'Declaration
Public Function BeginSendContextData ( _
applicationId As String, _
dataType As String, _
data As String, _
conversationCallback As AsyncCallback, _
state As Object _
) As IAsyncResult
'Usage
Dim instance As Conversation
Dim applicationId As String
Dim dataType As String
Dim data As String
Dim conversationCallback As AsyncCallback
Dim state As Object
Dim returnValue As IAsyncResult
returnValue = instance.BeginSendContextData(applicationId, _
dataType, data, conversationCallback, _
state)
public IAsyncResult BeginSendContextData(
string applicationId,
string dataType,
string data,
AsyncCallback conversationCallback,
Object state
)
Parameters
- applicationId
Type: System.String
- dataType
Type: System.String
- data
Type: System.String
- conversationCallback
Type: System.AsyncCallback
- state
Type: System.Object
Return value
Type: System.IAsyncResult