Conversation.BeginSendContextData Method
This is used to send additional application context to an established conversation. The string context data type and string context data are interpreted by the registered application and are opaque to Lync.
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