Beispiel #1
0
 /// <remarks/>
 public void ListRolesAsync(SecurityScopeEnum SecurityScope, object userState) {
     if ((this.ListRolesOperationCompleted == null)) {
         this.ListRolesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnListRolesOperationCompleted);
     }
     this.InvokeAsync("ListRoles", new object[] {
                 SecurityScope}, this.ListRolesOperationCompleted, userState);
 }
Beispiel #2
0
 /// <remarks/>
 public void ListRolesAsync(SecurityScopeEnum SecurityScope) {
     this.ListRolesAsync(SecurityScope, null);
 }
Beispiel #3
0
 public Task[] ListTasks(SecurityScopeEnum SecurityScope) {
     object[] results = this.Invoke("ListTasks", new object[] {
                 SecurityScope});
     return ((Task[])(results[0]));
 }
Beispiel #4
0
 public Role[] ListRoles(SecurityScopeEnum SecurityScope) {
     object[] results = this.Invoke("ListRoles", new object[] {
                 SecurityScope});
     return ((Role[])(results[0]));
 }
 /// <remarks/>
 public System.IAsyncResult BeginListTasks(SecurityScopeEnum SecurityScope, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("ListTasks", new object[] {
                 SecurityScope}, callback, asyncState);
 }