예제 #1
0
 /// <remarks/>
 public void SetDocumentTypeAsync(DocumentTypeInfo docType, string overrideDbConnectionString, string overrideEnumDbDatabase, object userState) {
     if ((this.SetDocumentTypeOperationCompleted == null)) {
         this.SetDocumentTypeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSetDocumentTypeOperationCompleted);
     }
     this.InvokeAsync("SetDocumentType", new object[] {
                 docType,
                 overrideDbConnectionString,
                 overrideEnumDbDatabase}, this.SetDocumentTypeOperationCompleted, userState);
 }
예제 #2
0
 /// <remarks/>
 public void SetDocumentTypeAsync(DocumentTypeInfo docType, string overrideDbConnectionString, string overrideEnumDbDatabase) {
     this.SetDocumentTypeAsync(docType, overrideDbConnectionString, overrideEnumDbDatabase, null);
 }
예제 #3
0
 public StatusInfo GetDocumentType(string docTypeName, out DocumentTypeInfo docType) {
     object[] results = this.Invoke("GetDocumentType", new object[] {
                 docTypeName});
     docType = ((DocumentTypeInfo)(results[1]));
     return ((StatusInfo)(results[0]));
 }
예제 #4
0
 public StatusInfo SetDocumentType(DocumentTypeInfo docType, string overrideDbConnectionString, string overrideEnumDbDatabase) {
     object[] results = this.Invoke("SetDocumentType", new object[] {
                 docType,
                 overrideDbConnectionString,
                 overrideEnumDbDatabase});
     return ((StatusInfo)(results[0]));
 }
예제 #5
0
 public StatusInfo EnumerateDocumentTypes(out DocumentTypeInfo[] docTypes) {
     object[] results = this.Invoke("EnumerateDocumentTypes", new object[0]);
     docTypes = ((DocumentTypeInfo[])(results[1]));
     return ((StatusInfo)(results[0]));
 }