public IAsyncResult BeginGetFederationInformation(GetFederationInformationRequest Request, AsyncCallback callback, object asyncState)
 {
     return(base.BeginInvoke("GetFederationInformation", new object[]
     {
         Request
     }, callback, asyncState));
 }
        public GetFederationInformationResponse GetFederationInformation([XmlElement(IsNullable = true)] GetFederationInformationRequest Request)
        {
            object[] array = base.Invoke("GetFederationInformation", new object[]
            {
                Request
            });

            return((GetFederationInformationResponse)array[0]);
        }
 public void GetFederationInformationAsync(GetFederationInformationRequest Request, object userState)
 {
     if (this.GetFederationInformationOperationCompleted == null)
     {
         this.GetFederationInformationOperationCompleted = new SendOrPostCallback(this.OnGetFederationInformationOperationCompleted);
     }
     base.InvokeAsync("GetFederationInformation", new object[]
     {
         Request
     }, this.GetFederationInformationOperationCompleted, userState);
 }
 public void GetFederationInformationAsync(GetFederationInformationRequest Request)
 {
     this.GetFederationInformationAsync(Request, null);
 }