Exemplo n.º 1
0
 /// <remarks/>
 public void GerarAsync(string user, string password, int encryption, gerarlotectbGerarIn parameters, object userState)
 {
     if ((this.GerarOperationCompleted == null))
     {
         this.GerarOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGerarOperationCompleted);
     }
     this.InvokeAsync("Gerar", new object[] {
         user,
         password,
         encryption,
         parameters
     }, this.GerarOperationCompleted, userState);
 }
Exemplo n.º 2
0
 /// <remarks/>
 public void GerarAsync(string user, string password, int encryption, gerarlotectbGerarIn parameters)
 {
     this.GerarAsync(user, password, encryption, parameters, null);
 }
Exemplo n.º 3
0
        public gerarlotectbGerarOut Gerar(string user, string password, int encryption, gerarlotectbGerarIn parameters)
        {
            object[] results = this.Invoke("Gerar", new object[] {
                user,
                password,
                encryption,
                parameters
            });

            return((gerarlotectbGerarOut)(results[0]));
        }