Esempio n. 1
0
        public byte[] convertDocumentURL([System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] converterOptions options, [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified, DataType = "anyURI")] string fileURL)
        {
            object[] results = this.Invoke("convertDocumentURL", new object[] {
                options,
                fileURL
            });

            return((byte[])(results[0]));
        }
Esempio n. 2
0
        public byte[] convertDocument([System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)] converterOptions options, [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified, DataType = "base64Binary")] byte[] fileContent)
        {
            object[] results = this.Invoke("convertDocument", new object[] {
                options,
                fileContent
            });

            return((byte[])(results[0]));
        }
Esempio n. 3
0
 /// <remarks/>
 public void convertDocumentURLAsync(converterOptions options, string fileURL, object userState)
 {
     if ((this.convertDocumentURLOperationCompleted == null))
     {
         this.convertDocumentURLOperationCompleted = new System.Threading.SendOrPostCallback(this.OnconvertDocumentURLOperationCompleted);
     }
     this.InvokeAsync("convertDocumentURL", new object[] {
         options,
         fileURL
     }, this.convertDocumentURLOperationCompleted, userState);
 }
Esempio n. 4
0
 /// <remarks/>
 public void convertDocumentAsync(converterOptions options, byte[] fileContent, object userState)
 {
     if ((this.convertDocumentOperationCompleted == null))
     {
         this.convertDocumentOperationCompleted = new System.Threading.SendOrPostCallback(this.OnconvertDocumentOperationCompleted);
     }
     this.InvokeAsync("convertDocument", new object[] {
         options,
         fileContent
     }, this.convertDocumentOperationCompleted, userState);
 }
Esempio n. 5
0
 /// <remarks/>
 public void convertDocumentURLAsync(converterOptions options, string fileURL)
 {
     this.convertDocumentURLAsync(options, fileURL, null);
 }
Esempio n. 6
0
 /// <remarks/>
 public void convertDocumentAsync(converterOptions options, byte[] fileContent)
 {
     this.convertDocumentAsync(options, fileContent, null);
 }