Beispiel #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]));
        }
Beispiel #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]));
        }
Beispiel #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);
 }
Beispiel #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);
 }
Beispiel #5
0
 /// <remarks/>
 public void convertDocumentURLAsync(converterOptions options, string fileURL)
 {
     this.convertDocumentURLAsync(options, fileURL, null);
 }
Beispiel #6
0
 /// <remarks/>
 public void convertDocumentAsync(converterOptions options, byte[] fileContent)
 {
     this.convertDocumentAsync(options, fileContent, null);
 }