PartyCreateChatControlCompletedStateChange

Information specific to the CreateChatControlCompleted type of state change.

Syntax

struct PartyCreateChatControlCompletedStateChange : PartyStateChange {  
    PartyStateChangeResult result;  
    PartyError errorDetail;  
    PartyLocalDevice* localDevice;  
    PartyLocalUser* localUser;  
    PartyString languageCode;  
    void* asyncIdentifier;  
    PartyLocalChatControl* localChatControl;  
}  

Members

result   PartyStateChangeResult

Indicates that the chat control creation operation Succeeded or provides the reason that it failed.

errorDetail   PartyError

A diagnostic value providing additional troubleshooting information regarding any potential error condition.

The human-readable form of this error detail can be retrieved via PartyManager::GetErrorMessage().

localDevice   PartyLocalDevice*

The local device used in the call associated with this state change.

localUser   PartyLocalUser*

The local user provided to the call associated with this state change.

languageCode   PartyString

The language code provided to the call associated with this state change.

asyncIdentifier   void*

The async identifier provided to the call associated with this state change.

localChatControl   PartyLocalChatControl*

The chat control that was created.

Requirements

Header: Party.h

See also

Party members
PartyLocalDevice::CreateChatControl