iControl.SystemSystemInfo.acquire_lock C# (CSharp) Method

acquire_lock() private method

private acquire_lock ( string lock_name, long duration_sec, string comment ) : bool
lock_name string
duration_sec long
comment string
return bool
        public bool acquire_lock(
		string lock_name,
		long duration_sec,
		string comment
	)
        {
            object [] results = this.Invoke("acquire_lock", new object [] {
                lock_name,
                duration_sec,
                comment});
            return ((bool)(results[0]));
        }
SystemSystemInfo