public GroupTypeInfo GetGroupType( Identifier ownId, Identifier grpTypeId )
 {
     GetGroupTypeRequest request = new GetGroupTypeRequest() {
         OwnerOrgUnitId = ownId,
         GroupTypeId = grpTypeId
     };
     GetGroupTypeResponse response = CallWebService<
         IOrgUnitManagementServicev1_0, GetGroupTypeRequest, GetGroupTypeResponse>(
         m_service1_0, request, ( s, q ) => s.GetGroupType( q ) );
     return response.GroupType;
 }
Example #2
0
 /// <remarks/>
 public void GetGroupTypeAsync(GetGroupTypeRequest GetGroupTypeRequest)
 {
     this.GetGroupTypeAsync(GetGroupTypeRequest, null);
 }
Example #3
0
 /// <remarks/>
 public void GetGroupTypeAsync(GetGroupTypeRequest GetGroupTypeRequest, object userState)
 {
     if ((this.GetGroupTypeOperationCompleted == null)) {
         this.GetGroupTypeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetGroupTypeOperationCompleted);
     }
     this.InvokeAsync("GetGroupType", new object[] {
                 GetGroupTypeRequest}, this.GetGroupTypeOperationCompleted, userState);
 }
Example #4
0
 /// <remarks/>
 public System.IAsyncResult BeginGetGroupType(GetGroupTypeRequest GetGroupTypeRequest, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("GetGroupType", new object[] {
                 GetGroupTypeRequest}, callback, asyncState);
 }