/// <remarks/> public void ExternalAuthenticationAsync(SWSToken theToken) { this.ExternalAuthenticationAsync(theToken, null); }
/// <remarks/> public void ExternalAuthenticationAsync(SWSToken theToken, object userState) { if ((this.ExternalAuthenticationOperationCompleted == null)) { this.ExternalAuthenticationOperationCompleted = new System.Threading.SendOrPostCallback(this.OnExternalAuthenticationOperationCompleted); } this.InvokeAsync("ExternalAuthentication", new object[] { theToken}, this.ExternalAuthenticationOperationCompleted, userState); }
public bool ExternalAuthentication(SWSToken theToken) { object[] results = this.Invoke("ExternalAuthentication", new object[] { theToken}); return ((bool)(results[0])); }