serviceagentcallbackbase.cs

来自「Microsoft Mobile Development Handbook的代码」· CS 代码 · 共 29 行

CS
29
字号
//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by the Mobile Client Software Factory.
//     Runtime Version:2.0.50727.42
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using Microsoft.Practices.Mobile.DisconnectedAgent;
using System;

namespace MobileDevelopersHandbook.DSAExample.DisconnectedAgents.OrdersWebService
{
    // Generated code for the web service.
    // Use this proxy to make requests to the service when working in an application that is occasionally connected
    public abstract class ServiceDisconnectedAgentCallbackBase
    {
        #region PostOrder

        public abstract void OnPostOrderReturn(Request request, object[] parameters, Int32 returnValue);

        public abstract OnExceptionAction OnPostOrderException(Request request, Exception ex);

        #endregion PostOrder

    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?