iControl.SystemCryptoClient.Begincreate C# (CSharp) Method

Begincreate() public method

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