FragmentState.Equality(FragmentState, FragmentState) Operator

Definition

Determines if two instances of FragmentState describes the same TextFragment state.

public:
 static bool operator ==(System::Speech::Synthesis::TtsEngine::FragmentState state1, System::Speech::Synthesis::TtsEngine::FragmentState state2);
public static bool operator == (System.Speech.Synthesis.TtsEngine.FragmentState state1, System.Speech.Synthesis.TtsEngine.FragmentState state2);
static member ( = ) : System.Speech.Synthesis.TtsEngine.FragmentState * System.Speech.Synthesis.TtsEngine.FragmentState -> bool
Public Shared Operator == (state1 As FragmentState, state2 As FragmentState) As Boolean

Parameters

state1
FragmentState

An instance of TextFragment whose described state is compared against the instance of TextFragment provided by the state2 argument.

state2
FragmentState

An instance of TextFragment whose described state is compared against the instance of TextFragment provided by the state1 argument.

Returns

Returns true if both instances of FragmentState, state1 and state2, describe the same TextFragment state, otherwise false is returned.

Remarks

The equivalent method for this operator is FragmentState.Equals(FragmentState).

Applies to