Example #1
0
 /// <remarks/>
 public void GetLoginURLAsync(AuthorizationType Authorization, GetLoginURLType parameters) {
     this.GetLoginURLAsync(Authorization, parameters, null);
 }
Example #2
0
 /// <remarks/>
 public void GetLoginURLAsync(AuthorizationType Authorization, GetLoginURLType parameters, object userState) {
     if ((this.GetLoginURLOperationCompleted == null)) {
         this.GetLoginURLOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetLoginURLOperationCompleted);
     }
     this.InvokeAsync("GetLoginURL", new object[] {
                 Authorization,
                 parameters}, this.GetLoginURLOperationCompleted, userState);
 }
Example #3
0
 public GetLoginURLResponseType GetLoginURL(AuthorizationType Authorization, GetLoginURLType parameters) {
     object[] results = this.Invoke("GetLoginURL", new object[] {
                 Authorization,
                 parameters});
     return ((GetLoginURLResponseType)(results[0]));
 }