示例#1
0
文件: Reference.cs 项目: evkap/DVS
 /// <remarks/>
 public void SetRolePropertiesAsync(string Name, string Description, Task[] Tasks, object userState) {
     if ((this.SetRolePropertiesOperationCompleted == null)) {
         this.SetRolePropertiesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSetRolePropertiesOperationCompleted);
     }
     this.InvokeAsync("SetRoleProperties", new object[] {
                 Name,
                 Description,
                 Tasks}, this.SetRolePropertiesOperationCompleted, userState);
 }
示例#2
0
文件: Reference.cs 项目: evkap/DVS
 /// <remarks/>
 public void SetRolePropertiesAsync(string Name, string Description, Task[] Tasks) {
     this.SetRolePropertiesAsync(Name, Description, Tasks, null);
 }
示例#3
0
文件: Reference.cs 项目: evkap/DVS
 /// <remarks/>
 public void CreateRoleAsync(string Name, string Description, Task[] Tasks) {
     this.CreateRoleAsync(Name, Description, Tasks, null);
 }
示例#4
0
文件: Reference.cs 项目: evkap/DVS
 public void SetRoleProperties(string Name, string Description, Task[] Tasks) {
     this.Invoke("SetRoleProperties", new object[] {
                 Name,
                 Description,
                 Tasks});
 }
示例#5
0
文件: Reference.cs 项目: evkap/DVS
 public void CreateRole(string Name, string Description, Task[] Tasks) {
     this.Invoke("CreateRole", new object[] {
                 Name,
                 Description,
                 Tasks});
 }