當前位置: 首頁>>代碼示例>>C#>>正文


C# ManagementServices.CallButlerAuthInfo類代碼示例

本文整理匯總了C#中WOSI.CallButler.ManagementInterface.ManagementServices.CallButlerAuthInfo的典型用法代碼示例。如果您正苦於以下問題:C# CallButlerAuthInfo類的具體用法?C# CallButlerAuthInfo怎麽用?C# CallButlerAuthInfo使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


CallButlerAuthInfo類屬於WOSI.CallButler.ManagementInterface.ManagementServices命名空間,在下文中一共展示了CallButlerAuthInfo類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: SetMultilingualAsync

 /// <remarks/>
 public void SetMultilingualAsync(CallButlerAuthInfo authInfo, bool isMultilingual) {
     this.SetMultilingualAsync(authInfo, isMultilingual, null);
 }
開發者ID:hostitherepc,項目名稱:Fork-1,代碼行數:4,代碼來源:Reference.cs

示例2: GetCallHistoryAsync

 /// <remarks/>
 public void GetCallHistoryAsync(CallButlerAuthInfo authInfo, object userState) {
     if ((this.GetCallHistoryOperationCompleted == null)) {
         this.GetCallHistoryOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetCallHistoryOperationCompleted);
     }
     this.InvokeAsync("GetCallHistory", new object[] {
                 authInfo}, this.GetCallHistoryOperationCompleted, userState);
 }
開發者ID:hostitherepc,項目名稱:Fork-1,代碼行數:8,代碼來源:Reference.cs

示例3: GetRecentCallsAsync

 /// <remarks/>
 public void GetRecentCallsAsync(CallButlerAuthInfo authInfo, int count) {
     this.GetRecentCallsAsync(authInfo, count, null);
 }
開發者ID:hostitherepc,項目名稱:Fork-1,代碼行數:4,代碼來源:Reference.cs

示例4: ClearCallHistory

 public void ClearCallHistory(CallButlerAuthInfo authInfo) {
     this.Invoke("ClearCallHistory", new object[] {
                 authInfo});
 }
開發者ID:hostitherepc,項目名稱:Fork-1,代碼行數:4,代碼來源:Reference.cs

示例5: GetCallHistory

 public CallButlerDataset.CallHistoryDataTable GetCallHistory(CallButlerAuthInfo authInfo) {
     object[] results = this.Invoke("GetCallHistory", new object[] {
                 authInfo});
     return ((CallButlerDataset.CallHistoryDataTable)(results[0]));
 }
開發者ID:hostitherepc,項目名稱:Fork-1,代碼行數:5,代碼來源:Reference.cs

示例6: GetFirstTimeRunAsync

 /// <remarks/>
 public void GetFirstTimeRunAsync(CallButlerAuthInfo authInfo) {
     this.GetFirstTimeRunAsync(authInfo, null);
 }
開發者ID:hostitherepc,項目名稱:Fork-1,代碼行數:4,代碼來源:Reference.cs

示例7: SetFirstTimeRunAsync

 /// <remarks/>
 public void SetFirstTimeRunAsync(CallButlerAuthInfo authInfo, bool val) {
     this.SetFirstTimeRunAsync(authInfo, val, null);
 }
開發者ID:hostitherepc,項目名稱:Fork-1,代碼行數:4,代碼來源:Reference.cs

示例8: SetLanguages

 public void SetLanguages(CallButlerAuthInfo authInfo, string languages) {
     this.Invoke("SetLanguages", new object[] {
                 authInfo,
                 languages});
 }
開發者ID:hostitherepc,項目名稱:Fork-1,代碼行數:5,代碼來源:Reference.cs

示例9: SetLanguagesAsync

 /// <remarks/>
 public void SetLanguagesAsync(CallButlerAuthInfo authInfo, string languages) {
     this.SetLanguagesAsync(authInfo, languages, null);
 }
開發者ID:hostitherepc,項目名稱:Fork-1,代碼行數:4,代碼來源:Reference.cs

示例10: GetLanguages

 public string GetLanguages(CallButlerAuthInfo authInfo) {
     object[] results = this.Invoke("GetLanguages", new object[] {
                 authInfo});
     return ((string)(results[0]));
 }
開發者ID:hostitherepc,項目名稱:Fork-1,代碼行數:5,代碼來源:Reference.cs

示例11: GetLanguagesAsync

 /// <remarks/>
 public void GetLanguagesAsync(CallButlerAuthInfo authInfo) {
     this.GetLanguagesAsync(authInfo, null);
 }
開發者ID:hostitherepc,項目名稱:Fork-1,代碼行數:4,代碼來源:Reference.cs

示例12: SetDefaultLanguageAsync

 /// <remarks/>
 public void SetDefaultLanguageAsync(CallButlerAuthInfo authInfo, string defaultLanguage) {
     this.SetDefaultLanguageAsync(authInfo, defaultLanguage, null);
 }
開發者ID:hostitherepc,項目名稱:Fork-1,代碼行數:4,代碼來源:Reference.cs

示例13: SetDefaultLanguage

 public void SetDefaultLanguage(CallButlerAuthInfo authInfo, string defaultLanguage) {
     this.Invoke("SetDefaultLanguage", new object[] {
                 authInfo,
                 defaultLanguage});
 }
開發者ID:hostitherepc,項目名稱:Fork-1,代碼行數:5,代碼來源:Reference.cs

示例14: GetManagementPasswordAsync

 /// <remarks/>
 public void GetManagementPasswordAsync(CallButlerAuthInfo authInfo) {
     this.GetManagementPasswordAsync(authInfo, null);
 }
開發者ID:hostitherepc,項目名稱:Fork-1,代碼行數:4,代碼來源:Reference.cs

示例15: GetFirstTimeRun

 public bool GetFirstTimeRun(CallButlerAuthInfo authInfo) {
     object[] results = this.Invoke("GetFirstTimeRun", new object[] {
                 authInfo});
     return ((bool)(results[0]));
 }
開發者ID:hostitherepc,項目名稱:Fork-1,代碼行數:5,代碼來源:Reference.cs


注:本文中的WOSI.CallButler.ManagementInterface.ManagementServices.CallButlerAuthInfo類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。