本文整理汇总了C#中System.Net.Sockets.Socket.SetNetworkRequirement方法的典型用法代码示例。如果您正苦于以下问题:C# Socket.SetNetworkRequirement方法的具体用法?C# Socket.SetNetworkRequirement怎么用?C# Socket.SetNetworkRequirement使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Net.Sockets.Socket
的用法示例。
在下文中一共展示了Socket.SetNetworkRequirement方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ConnectAsync
/// <summary>
/// Starts an asynchronous connect operation to connect to a remote server.
/// </summary>
/// <param name="remoteAddress">The remote address to connect to.</param>
/// <param name="remotePort">The remote port to use during the connection attempt.</param>
public void ConnectAsync(string remoteAddress, int remotePort)
{
var remoteEndPoint = EndPointHelper.ParseEndPoint(remoteAddress, remotePort);
_logger.Trace("Connecting to remote endpoint {0}", remoteEndPoint);
var socket = new Socket(AddressFamily.InterNetwork,
SocketType.Stream,
ProtocolType.Tcp);
#if WINDOWS_PHONE
// make sure we only use the socket when we have a non-cellular (Wi-Fi or similar) connection
socket.SetNetworkRequirement(NetworkSelectionCharacteristics.NonCellular);
#endif
// update operation arguments
_socketOperation.RemoteEndPoint = remoteEndPoint;
// connect socket
bool completesAsynchronously = socket.ConnectAsync(_socketOperation);
// check if the completed event will be raised.
// if not, invoke the handler manually.
if (!completesAsynchronously)
{
SocketAsyncEventArgs_Completed(_socketOperation.ConnectSocket, _socketOperation);
}
}