예제 #1
0
 private object[] OnEndGetDocument(System.IAsyncResult result)
 {
     BiblosDS.Library.Common.Objects.Document retVal = this.EndGetDocument(result);
     return(new object[] {
         retVal
     });
 }
예제 #2
0
 public void CheckIntegrityAsync(BiblosDS.Library.Common.Objects.Document Document, object userState)
 {
     if ((this.onBeginCheckIntegrityDelegate == null))
     {
         this.onBeginCheckIntegrityDelegate = new BeginOperationDelegate(this.OnBeginCheckIntegrity);
     }
     if ((this.onEndCheckIntegrityDelegate == null))
     {
         this.onEndCheckIntegrityDelegate = new EndOperationDelegate(this.OnEndCheckIntegrity);
     }
     if ((this.onCheckIntegrityCompletedDelegate == null))
     {
         this.onCheckIntegrityCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnCheckIntegrityCompleted);
     }
     base.InvokeAsync(this.onBeginCheckIntegrityDelegate, new object[] {
         Document
     }, this.onEndCheckIntegrityDelegate, this.onCheckIntegrityCompletedDelegate, userState);
 }
예제 #3
0
 public void CheckIntegrityAsync(BiblosDS.Library.Common.Objects.Document Document)
 {
     this.CheckIntegrityAsync(Document, null);
 }
예제 #4
0
 private System.IAsyncResult OnBeginCheckIntegrity(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     BiblosDS.Library.Common.Objects.Document Document = ((BiblosDS.Library.Common.Objects.Document)(inValues[0]));
     return(this.BeginCheckIntegrity(Document, callback, asyncState));
 }
예제 #5
0
 public System.IAsyncResult BeginCheckIntegrity(BiblosDS.Library.Common.Objects.Document Document, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginCheckIntegrity(Document, callback, asyncState));
 }
예제 #6
0
 public bool CheckIntegrity(BiblosDS.Library.Common.Objects.Document Document)
 {
     return(base.Channel.CheckIntegrity(Document));
 }
예제 #7
0
 public void WriteAttributeAsync(BiblosDS.Library.Common.Objects.Document Document)
 {
     this.WriteAttributeAsync(Document, null);
 }
예제 #8
0
 public void WriteAttribute(BiblosDS.Library.Common.Objects.Document Document)
 {
     base.Channel.WriteAttribute(Document);
 }
예제 #9
0
 public void GetDocumentAsync(BiblosDS.Library.Common.Objects.Document Document)
 {
     this.GetDocumentAsync(Document, null);
 }
예제 #10
0
 public BiblosDS.Library.Common.Objects.Document GetDocument(BiblosDS.Library.Common.Objects.Document Document)
 {
     return(base.Channel.GetDocument(Document));
 }
예제 #11
0
 public System.Guid AddDocument(BiblosDS.Library.Common.Objects.Document Document)
 {
     return(base.Channel.AddDocument(Document));
 }
예제 #12
0
 public BiblosDS.Library.Common.Objects.Document GetDocumentConformAttach(BiblosDS.Library.Common.Objects.Document Document, string fileName)
 {
     return(base.Channel.GetDocumentConformAttach(Document, fileName));
 }