Peer.op_Equality(Peer,Peer) Method (Microsoft.DirectX.DirectPlay)

Warning: This method is deprecated. Deprecated components of Microsoft DirectX 9.0 for Managed Code are considered obsolete. While these components are still supported in this release of DirectX 9.0 for Managed Code, they may be removed in the future. When writing new applications, you should avoid using these deprecated components. When modifying existing applications, you are strongly encouraged to remove any dependency on these components.

Compares the current instance of a class to another instance to determine whether they are the same. Deprecated.

Definition

Visual Basic Public Shared Function op_Equality( _
    ByVal left As Peer, _
    ByVal right As Peer _
) As Boolean
C# public static bool op_Equality(
    Peer left,
    Peer right
);
C++ public:
static bool operator==(
    Peerleft,
    Peerright
);
JScript public static function op_Equality(
    left : Peer,
    right : Peer
) : boolean;

Parameters

left Microsoft.DirectX.DirectPlay.Peer
The Peer structure to the left of the equality operator.
right Microsoft.DirectX.DirectPlay.Peer
The Peer structure to the right of the equality operator.

Return Value

System.Boolean
Value that is true if the objects are the same, or false if they are different.