iControl.SystemSystemInfo.Beginacquire_lock C# (CSharp) Method

Beginacquire_lock() public method

public Beginacquire_lock ( string lock_name, long duration_sec, string comment, System callback, object asyncState ) : System.IAsyncResult
lock_name string
duration_sec long
comment string
callback System
asyncState object
return System.IAsyncResult
        public System.IAsyncResult Beginacquire_lock(string lock_name,long duration_sec,string comment, System.AsyncCallback callback, object asyncState)
        {
            return this.BeginInvoke("acquire_lock", new object[] {
            lock_name,
            duration_sec,
            comment}, callback, asyncState);
        }
SystemSystemInfo