Beispiel #1
0
 /// <remarks/>
 public void AddScopeAsync(AddScopeRequest req) {
     this.AddScopeAsync(req, null);
 }
Beispiel #2
0
 /// <remarks/>
 public void AddScopeAsync(AddScopeRequest req, object userState) {
     if ((this.AddScopeOperationCompleted == null)) {
         this.AddScopeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddScopeOperationCompleted);
     }
     this.InvokeAsync("AddScope", new object[] {
                 req}, this.AddScopeOperationCompleted, userState);
 }
Beispiel #3
0
 public AddScopeResponse AddScope(AddScopeRequest req) {
     object[] results = this.Invoke("AddScope", new object[] {
                 req});
     return ((AddScopeResponse)(results[0]));
 }