コード例 #1
0
 public UserBasicInfo[] GetAuditors( Identifier userId )
 {
     GetAuditorsRequest request = new GetAuditorsRequest() { UserId = userId };
     GetAuditorsResponse response =
         CallWebService<IUserManagementServicev1_4, GetAuditorsRequest, GetAuditorsResponse>(
             m_service1_4, request, ( s, q ) => s.GetAuditors( q ) );
     return response.Users;
 }
コード例 #2
0
ファイル: ProxyCode.cs プロジェクト: Brightspace/d2lws-sdk
 /// <remarks/>
 public void GetAuditorsAsync(GetAuditorsRequest GetAuditorsRequest)
 {
     this.GetAuditorsAsync(GetAuditorsRequest, null);
 }
コード例 #3
0
ファイル: ProxyCode.cs プロジェクト: Brightspace/d2lws-sdk
 /// <remarks/>
 public void GetAuditorsAsync(GetAuditorsRequest GetAuditorsRequest, object userState)
 {
     if ((this.GetAuditorsOperationCompleted == null)) {
         this.GetAuditorsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetAuditorsOperationCompleted);
     }
     this.InvokeAsync("GetAuditors", new object[] {
                 GetAuditorsRequest}, this.GetAuditorsOperationCompleted, userState);
 }
コード例 #4
0
ファイル: ProxyCode.cs プロジェクト: Brightspace/d2lws-sdk
 /// <remarks/>
 public System.IAsyncResult BeginGetAuditors(GetAuditorsRequest GetAuditorsRequest, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("GetAuditors", new object[] {
                 GetAuditorsRequest}, callback, asyncState);
 }