System.Threading.Monitor.Monitor.Pulse C# (CSharp) Method

Pulse() public static method

public static Pulse ( object obj ) : void
obj object
return void
		public static void Pulse(object obj) {
			if(obj==null) {
				throw new ArgumentNullException("obj");
			}
			if(Monitor_test_synchronised(obj)==false) {
				throw new SynchronizationLockException("Object is not synchronized");
			}

			Monitor_pulse(obj);
		}