📄 iproxyfactory.cs
字号:
//===============================================================================
// Microsoft patterns & practices
// Mobile Client Software Factory - July 2006
//===============================================================================
// Copyright Microsoft Corporation. All rights reserved.
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
// OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
// LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
// FITNESS FOR A PARTICULAR PURPOSE.
//===============================================================================
// The example companies, organizations, products, domain names,
// e-mail addresses, logos, people, places, and events depicted
// herein are fictitious. No association with any real company,
// organization, product, domain name, email address, logo, person,
// places, or events is intended or should be inferred.
//===============================================================================
using System;
using System.Collections.Generic;
using System.Text;
namespace Microsoft.Practices.Mobile.DisconnectedAgent
{
public interface IProxyFactory
{
/// <summary>
/// This method allows you to create the proxy object in concrete implementations.
/// You can use the OnlineProxyType property of the Request to know the expected type for the proxy object.
/// The concrete proxy factory should set specific properties in the proxy object like the URL and credentials.
/// To set the URL, the proxy factory can use the network name and the Request's endpoint.
/// </summary>
/// <param name="request">Request to be dispatched.</param>
/// <param name="networkName">Current network name.</param>
/// <returns>The proxy object.</returns>
object GetOnlineProxy(Request request, string networkName);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -