Terminate an established connection with the Group Chat server, and clean up all resources associated with the connection.

Namespace:  Microsoft.Rtc.Collaboration.GroupChat
Assembly:  Microsoft.Rtc.Collaboration.GroupChat(in Microsoft.Rtc.Collaboration.GroupChat.dll)

Syntax

Visual Basic (Declaration)
Public 
Function 
BeginTerminate ( _
	
userCallback 
As 
AsyncCallback, _
	
state 
As 
Object _
) 
As 
IAsyncResult
Visual Basic (Usage)
Dim 
instance 
As 

GroupChatEndpoint
Dim 
userCallback 
As 
AsyncCallback
Dim 
state 
As 
Object
Dim 
returnValue 
As 
IAsyncResult

returnValue = instance.
BeginTerminate(
userCallback, _
	
state)
C#
public 
IAsyncResult 
BeginTerminate(
	
AsyncCallback 
userCallback,
	
Object 
state
)

Parameters

userCallback
Type: System . . :: . . AsyncCallback

The method to be invoked when this asynchronous operation completes.

state
Type: System . . :: . . Object

An object to be passed back to the callback.

Return Value

Type: System . . :: . . IAsyncResult

An IAsyncResult that references this operation.

Exceptions

Exception Condition
[Microsoft.Rtc.Collaboration.GroupChat.ChatServerConnectionException]

Thrown when the endpoint is not in a valid state.

Remarks

This request will be processed asynchronously. See EndTerminate(IAsyncResult) to complete this asynchronous operation.

See Also