• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# Threading.SendOrPostCallback类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中System.Threading.SendOrPostCallback的典型用法代码示例。如果您正苦于以下问题:C# System.Threading.SendOrPostCallback类的具体用法?C# System.Threading.SendOrPostCallback怎么用?C# System.Threading.SendOrPostCallback使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



System.Threading.SendOrPostCallback类属于命名空间,在下文中一共展示了System.Threading.SendOrPostCallback类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: DownloadFileAsync

 /// <remarks/>
 public void DownloadFileAsync(string serverFileName, object userState) {
     if ((this.DownloadFileOperationCompleted == null)) {
         this.DownloadFileOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDownloadFileOperationCompleted);
     }
     this.InvokeAsync("DownloadFile", new object[] {
                 serverFileName}, this.DownloadFileOperationCompleted, userState);
 }
开发者ID:Helen1987,项目名称:edu,代码行数:8,代码来源:FileServiceProxy.cs


示例2: GetCanReceiveMessageAsync

 /// <remarks/>
 public void GetCanReceiveMessageAsync(GetCanReceiveMessageRequestType GetCanReceiveMessageRequest, object userState) {
     if ((this.GetCanReceiveMessageOperationCompleted == null)) {
         this.GetCanReceiveMessageOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetCanReceiveMessageOperationCompleted);
     }
     this.InvokeAsync("GetCanReceiveMessage", new object[] {
         GetCanReceiveMessageRequest}, this.GetCanReceiveMessageOperationCompleted, userState);
 }
开发者ID:ekorra,项目名称:FiksMapper,代码行数:8,代码来源:bestClientProxy.cs


示例3: getRegExpDetailsAsync

 /// <remarks/>
 public void getRegExpDetailsAsync(int regexpId, object userState) {
     if ((this.getRegExpDetailsOperationCompleted == null)) {
         this.getRegExpDetailsOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetRegExpDetailsOperationCompleted);
     }
     this.InvokeAsync("getRegExpDetails", new object[] {
                 regexpId}, this.getRegExpDetailsOperationCompleted, userState);
 }
开发者ID:ChrisNikkel,项目名称:Umbraco-CMS,代码行数:8,代码来源:RegexComWebservice.cs


示例4: GetSystemSettingsAsync

 /// <remarks/>
 public void GetSystemSettingsAsync(string settingsName, object userState) {
     if ((this.GetSystemSettingsOperationCompleted == null)) {
         this.GetSystemSettingsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetSystemSettingsOperationCompleted);
     }
     this.InvokeAsync("GetSystemSettings", new object[] {
                 settingsName}, this.GetSystemSettingsOperationCompleted, userState);
 }
开发者ID:lwhitelock,项目名称:Websitepanel,代码行数:8,代码来源:SystemProxy.cs


示例5: GetServerVersionAsync

 public void GetServerVersionAsync(object userState)
 {
     if ((this.GetServerVersionOperationCompleted == null)) {
         this.GetServerVersionOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetServerVersionCompleted);
     }
     this.InvokeAsync("GetServerVersion", new object[0], this.GetServerVersionOperationCompleted, userState);
 }
开发者ID:adivik2000,项目名称:FreeFood,代码行数:7,代码来源:FreeFoodMain.cs


示例6: GET_CONTACT_DETAILAsync

 /// <remarks/>
 public void GET_CONTACT_DETAILAsync(InputParameters InputParameters, object userState) {
     if ((this.GET_CONTACT_DETAILOperationCompleted == null)) {
         this.GET_CONTACT_DETAILOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGET_CONTACT_DETAILOperationCompleted);
     }
     this.InvokeAsync("GET_CONTACT_DETAIL", new object[] {
                 InputParameters}, this.GET_CONTACT_DETAILOperationCompleted, userState);
 }
开发者ID:oo00spy00oo,项目名称:Accelerators,代码行数:8,代码来源:EBSContactProxy.cs


示例7: DataExchangeAsync

 /// <remarks/>
 public void DataExchangeAsync(string data, object userState) {
     if ((this.DataExchangeOperationCompleted == null)) {
         this.DataExchangeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDataExchangeOperationCompleted);
     }
     this.InvokeAsync("DataExchange", new object[] {
                 data}, this.DataExchangeOperationCompleted, userState);
 }
开发者ID:marijngiesen,项目名称:qoam,代码行数:8,代码来源:Reference.cs


示例8: RegisterByEmailAsync

 public void RegisterByEmailAsync(string email, object userState) {
     if ((this.RegisterByEmailOperationCompleted == null)) {
         this.RegisterByEmailOperationCompleted = new System.Threading.SendOrPostCallback(this.OnRegisterByEmailCompleted);
     }
     this.InvokeAsync("RegisterByEmail", new object[] {
                 email}, this.RegisterByEmailOperationCompleted, userState);
 }
开发者ID:Avatarchik,项目名称:cs-on-unity,代码行数:7,代码来源:AccountServicePUN.cs


示例9: SearchAsync

 public void SearchAsync(SearchRequest parameters, object userState) {
     if ((this.SearchOperationCompleted == null)) {
         this.SearchOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSearchCompleted);
     }
     this.InvokeAsync("Search", new object[] {
                 parameters}, this.SearchOperationCompleted, userState);
 }
开发者ID:enricos,项目名称:learning_monotouch_code,代码行数:7,代码来源:Reference.cs


示例10: processAsync

 /// <remarks/>
 public void processAsync(Payload payload, object userState) {
     if ((this.processOperationCompleted == null)) {
         this.processOperationCompleted = new System.Threading.SendOrPostCallback(this.OnprocessOperationCompleted);
     }
     this.InvokeAsync("process", new object[] {
                 payload}, this.processOperationCompleted, userState);
 }
开发者ID:jw56578,项目名称:CSharpEverything,代码行数:8,代码来源:Reference.cs


示例11: DoTransactionAsync

 /// <remarks/>
 public void DoTransactionAsync(PosRequest PosRequest, object userState) {
     if ((this.DoTransactionOperationCompleted == null)) {
         this.DoTransactionOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDoTransactionOperationCompleted);
     }
     this.InvokeAsync("DoTransaction", new object[] {
                 PosRequest}, this.DoTransactionOperationCompleted, userState);
 }
开发者ID:DenisPitcher,项目名称:heartland-dotnet,代码行数:8,代码来源:PosGatewayClient.cs


示例12: MovilizerAsync

 /// <remarks/>
 public void MovilizerAsync(MovilizerRequest MovilizerRequest, object userState) {
     if ((this.MovilizerOperationCompleted == null)) {
         this.MovilizerOperationCompleted = new System.Threading.SendOrPostCallback(this.OnMovilizerOperationCompleted);
     }
     this.InvokeAsync("Movilizer", new object[] {
                 MovilizerRequest}, this.MovilizerOperationCompleted, userState);
 }
开发者ID:Movilizer,项目名称:.NET_Connector,代码行数:8,代码来源:MovilizerWebServiceV11Service.cs


示例13: notifyReferationAsync

 /// <remarks/>
 public void notifyReferationAsync(string URL, object userState) {
     if ((this.notifyReferationOperationCompleted == null)) {
         this.notifyReferationOperationCompleted = new System.Threading.SendOrPostCallback(this.OnnotifyReferationOperationCompleted);
     }
     this.InvokeAsync("notifyReferation", new object[] {
                 URL}, this.notifyReferationOperationCompleted, userState);
 }
开发者ID:PushkinTyt,项目名称:Chat,代码行数:8,代码来源:CacheService.cs


示例14: getPackageIdAsync

 /// <remarks/>
 public void getPackageIdAsync(string shortcutName, object userState) {
     if ((getPackageIdOperationCompleted == null)) {
         getPackageIdOperationCompleted = new System.Threading.SendOrPostCallback(OngetPackageIdOperationCompleted);
     }
     InvokeAsync("getPackageId", new object[] {
                 shortcutName}, getPackageIdOperationCompleted, userState);
 }
开发者ID:JanDeHud,项目名称:LevelEditor,代码行数:8,代码来源:VersionCheckerService.cs


示例15: qqCheckOnlineAsync

 /// <remarks/>
 public void qqCheckOnlineAsync(string qqCode, object userState) {
     if ((this.qqCheckOnlineOperationCompleted == null)) {
         this.qqCheckOnlineOperationCompleted = new System.Threading.SendOrPostCallback(this.OnqqCheckOnlineOperationCompleted);
     }
     this.InvokeAsync("qqCheckOnline", new object[] {
                 qqCode}, this.qqCheckOnlineOperationCompleted, userState);
 }
开发者ID:vactorwu,项目名称:catch23-project,代码行数:8,代码来源:qqOnlineWebService.cs


示例16: ExecuteServiceAsync

 /// <remarks/>
 public void ExecuteServiceAsync(string name, object userState) {
     if ((this.ExecuteServiceOperationCompleted == null)) {
         this.ExecuteServiceOperationCompleted = new System.Threading.SendOrPostCallback(this.OnExecuteServiceOperationCompleted);
     }
     this.InvokeAsync("ExecuteService", new object[] {
                 name}, this.ExecuteServiceOperationCompleted, userState);
 }
开发者ID:spzenk,项目名称:sfdocsamples,代码行数:8,代码来源:Service2.cs


示例17: PROCESS_ORDERAsync

 /// <remarks/>
 public void PROCESS_ORDERAsync(InputParameters InputParameters, object userState) {
     if ((this.PROCESS_ORDEROperationCompleted == null)) {
         this.PROCESS_ORDEROperationCompleted = new System.Threading.SendOrPostCallback(this.OnPROCESS_ORDEROperationCompleted);
     }
     this.InvokeAsync("PROCESS_ORDER", new object[] {
                 InputParameters}, this.PROCESS_ORDEROperationCompleted, userState);
 }
开发者ID:oo00spy00oo,项目名称:Accelerators,代码行数:8,代码来源:OrderMgmtInbound.cs


示例18: GetMissedCallsAsync

 /// <remarks/>
 public void GetMissedCallsAsync(string dn, string sort, object userState) {
     if ((this.GetMissedCallsOperationCompleted == null)) {
         this.GetMissedCallsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetMissedCallsOperationCompleted);
     }
     this.InvokeAsync("GetMissedCalls", new object[] {
                 dn,
                 sort}, this.GetMissedCallsOperationCompleted, userState);
 }
开发者ID:gnomix,项目名称:T.A.L.K.,代码行数:9,代码来源:CallLogsServer.cs


示例19: MakeLoginAsync

 public void MakeLoginAsync(string login, string senha, object userState) {
     if ((this.MakeLoginOperationCompleted == null)) {
         this.MakeLoginOperationCompleted = new System.Threading.SendOrPostCallback(this.OnMakeLoginCompleted);
     }
     this.InvokeAsync("MakeLogin", new object[] {
                 login,
                 senha}, this.MakeLoginOperationCompleted, userState);
 }
开发者ID:rogeriofabricio,项目名称:XamarinCursoCross,代码行数:8,代码来源:Reference.cs


示例20: buyatTestEchoAsync

 /// <remarks/>
 public void buyatTestEchoAsync(string api_key, string message, object userState) {
     if ((this.buyatTestEchoOperationCompleted == null)) {
         this.buyatTestEchoOperationCompleted = new System.Threading.SendOrPostCallback(this.OnbuyatTestEchoOperationCompleted);
     }
     this.InvokeAsync("buyatTestEcho", new object[] {
                 api_key,
                 message}, this.buyatTestEchoOperationCompleted, userState);
 }
开发者ID:buyat,项目名称:buy.at-API-SDKs,代码行数:9,代码来源:BuyatService.cs



注:本文中的System.Threading.SendOrPostCallback类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# Threading.Tasks类代码示例发布时间:2022-05-24
下一篇:
C# Threading.Mutex类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap