/// <remarks/>
 public System.IAsyncResult BeginCreateOnsiteLog(CaseObjectType objectType, string objectIDNum, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("CreateOnsiteLog", new object[] {
                 objectType,
                 objectIDNum}, callback, asyncState);
 }
 public ToolkitResultProtocol CreateOnsiteLog(CaseObjectType objectType, string objectIDNum)
 {
     object[] results = this.Invoke("CreateOnsiteLog", new object[] {
                 objectType,
                 objectIDNum});
     return ((ToolkitResultProtocol)(results[0]));
 }