iControl.SystemCryptoClient.Begincreate C# (CSharp) 메소드

Begincreate() 공개 메소드

public Begincreate ( string clients, string addresses, long ports, System callback, object asyncState ) : System.IAsyncResult
clients string
addresses string
ports long
callback System
asyncState object
리턴 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