Ejemplo n.º 1
0
 /// <remarks/>
 public void invokeAsync(bool Archive, string Author, string Creator, bool Nahled, string Producer, string Subject, string Title, string Type, BLOB docIN, object userState)
 {
     if ((this.invokeOperationCompleted == null))
     {
         this.invokeOperationCompleted = new System.Threading.SendOrPostCallback(this.OninvokeOperationCompleted);
     }
     this.InvokeAsync("invoke", new object[] {
         Archive,
         Author,
         Creator,
         Nahled,
         Producer,
         Subject,
         Title,
         Type,
         docIN
     }, this.invokeOperationCompleted, userState);
 }
Ejemplo n.º 2
0
        public BLOB invoke(bool Archive, string Author, string Creator, bool Nahled, string Producer, string Subject, string Title, string Type, BLOB docIN, out string error, out string stavOUT)
        {
            object[] results = this.Invoke("invoke", new object[] {
                Archive,
                Author,
                Creator,
                Nahled,
                Producer,
                Subject,
                Title,
                Type,
                docIN
            });

            error   = ((string)(results[1]));
            stavOUT = ((string)(results[2]));
            return((BLOB)(results[0]));
        }
Ejemplo n.º 3
0
 /// <remarks/>
 public void invokeAsync(bool Archive, string Author, string Creator, bool Nahled, string Producer, string Subject, string Title, string Type, BLOB docIN)
 {
     this.invokeAsync(Archive, Author, Creator, Nahled, Producer, Subject, Title, Type, docIN, null);
 }