Created
July 4, 2012 14:10
Utility methods for using .NET IpcChannel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections; | |
using System.Runtime.Remoting.Channels; | |
using System.Runtime.Remoting.Channels.Ipc; | |
using System.Runtime.Serialization.Formatters; | |
namespace MyLibrary | |
{ | |
/// <summary> | |
/// Utility methods to support .NET Remoting with IPC channels | |
/// </summary> | |
public static class IpcRemotingUtil | |
{ | |
/// <summary> | |
/// Return a new client/server IpcChannel | |
/// </summary> | |
/// <param name="portName">IPC port name</param> | |
/// <returns>IpcChannel</returns> | |
public static IpcChannel CreateIpcChannel(string portName) | |
{ | |
var serverSinkProvider = new BinaryServerFormatterSinkProvider(); | |
serverSinkProvider.TypeFilterLevel = TypeFilterLevel.Full; | |
IDictionary properties = new Hashtable(); | |
properties["portName"] = portName; | |
properties["authorizedGroup"] = "Everyone"; | |
return new IpcChannel(properties, null, serverSinkProvider); | |
} | |
/// <summary> | |
/// Return a new client/server IpcChannel with a unique IPC port name | |
/// </summary> | |
/// <returns>IpcChannel</returns> | |
public static IpcChannel CreateIpcChannelWithUniquePortName() | |
{ | |
return CreateIpcChannel(Guid.NewGuid().ToString()); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See http://undefinedvalue.com/2011/12/14/creating-net-remoting-ipc-channels for more about this code