iControl.ManagementDevice.Begincreate C# (CSharp) Method

Begincreate() public method

public Begincreate ( string devices, string addresses, System callback, object asyncState ) : System.IAsyncResult
devices string
addresses string
callback System
asyncState object
return System.IAsyncResult
        public System.IAsyncResult Begincreate(string [] devices,string [] addresses, System.AsyncCallback callback, object asyncState)
        {
            return this.BeginInvoke("create", new object[] {
            devices,
            addresses}, callback, asyncState);
        }
ManagementDevice