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!

Mutex Constructor (Boolean, String)

Initializes a new instance of the Mutex class.

[Visual Basic]
Overloads Public Sub New( _
   ByVal initiallyOwned As Boolean, _
   ByVal name As String _
)
[C#]
public Mutex(
   bool initiallyOwned,
   string name
);
[C++]
public: Mutex(
   bool initiallyOwned,
   String* name
);
[JScript]
public function Mutex(
   initiallyOwned : Boolean,
   name : String
);

Parameters

initiallyOwned
If true and the caller created the OS mutex, it owns the created mutex. Ignored if the named OS mutex already existed.
name
[To be supplied.]

See Also

Mutex Class | Mutex Members | System.Threading Namespace | Mutex Constructor Overload List