NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Match.Synchronized

Returns a Match instance equivalent to the one supplied that is safe to share between multiple threads.

[Visual Basic]
Shadows Public Shared Function Synchronized( _
   ByVal inner As Match _
) As Match
[C#]
public static new Match Synchronized(
   Match inner
);
[C++]
public: static new Match* Synchronized(
   Match* inner
);
[JScript]
public static new function Synchronized(
   inner : Match
) : Match;

Parameters

inner
A Match instance equivalent to the one expected.

Return Value

A Match instance equivalent to the one supplied that is safe to share between multiple threads.

See Also

Match Class | Match Members | System.Text.RegularExpressions Namespace