PartyEndpointDestroyedStateChange

Information specific to the EndpointDestroyed type of state change.

Syntax

struct PartyEndpointDestroyedStateChange : PartyStateChange {  
    PartyNetwork* network;  
    PartyEndpoint* endpoint;  
    PartyDestroyedReason reason;  
    PartyError errorDetail;  
}  

Members

network   PartyNetwork*

The network of the endpoint that was destroyed.

endpoint   PartyEndpoint*

The endpoint that was destroyed.

reason   PartyDestroyedReason

The reason the endpoint was destroyed.

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().

Requirements

Header: Party.h

See also

Party members