示例#1
0
 /// <remarks/>
 public void SetDocumentTypeMappingAsync(string docTypeName, NodeMapInfo mappingInfo) {
     this.SetDocumentTypeMappingAsync(docTypeName, mappingInfo, null);
 }
示例#2
0
 /// <remarks/>
 public void SetDocumentTypeMappingAsync(string docTypeName, NodeMapInfo mappingInfo, object userState) {
     if ((this.SetDocumentTypeMappingOperationCompleted == null)) {
         this.SetDocumentTypeMappingOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSetDocumentTypeMappingOperationCompleted);
     }
     this.InvokeAsync("SetDocumentTypeMapping", new object[] {
                 docTypeName,
                 mappingInfo}, this.SetDocumentTypeMappingOperationCompleted, userState);
 }
示例#3
0
 public StatusInfo SetDocumentTypeMapping(string docTypeName, NodeMapInfo mappingInfo) {
     object[] results = this.Invoke("SetDocumentTypeMapping", new object[] {
                 docTypeName,
                 mappingInfo});
     return ((StatusInfo)(results[0]));
 }