public LicResponse GetLicense(LicRequest req) { object[] results = this.Invoke("GetLicense", new object[] { req }); return((LicResponse)(results[0])); }
/// <remarks/> public void GetLicenseAsync(LicRequest req, object userState) { if ((this.GetLicenseOperationCompleted == null)) { this.GetLicenseOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetLicenseOperationCompleted); } this.InvokeAsync("GetLicense", new object[] { req }, this.GetLicenseOperationCompleted, userState); }
/// <remarks/> public void GetLicenseAsync(LicRequest req) { this.GetLicenseAsync(req, null); }
/// <remarks/> public System.IAsyncResult BeginGetLicense(LicRequest req, System.AsyncCallback callback, object asyncState) { return(this.BeginInvoke("GetLicense", new object[] { req }, callback, asyncState)); }