Пример #1
0
    public static IpcClientChannel Ctor2()
    {
        //<snippet42>
        // Create the client channel.
        string name = "ipc client";

        System.Runtime.Remoting.Channels.IClientChannelSinkProvider
            sinkProvider = null;
        IpcClientChannel clientChannel =
            new IpcClientChannel(name, sinkProvider);

        //</snippet42>
        return(clientChannel);
    }
Пример #2
0
    public static IpcClientChannel Ctor1()
    {
        //<snippet41>
        // Create the client channel.
        System.Collections.IDictionary properties =
            new System.Collections.Hashtable();
        properties["name"]     = "ipc client";
        properties["priority"] = "1";
        System.Runtime.Remoting.Channels.IClientChannelSinkProvider
            sinkProvider = null;
        IpcClientChannel clientChannel =
            new IpcClientChannel(properties, sinkProvider);

        //</snippet41>
        return(clientChannel);
    }
 public TcpClientChannel(string name, System.Runtime.Remoting.Channels.IClientChannelSinkProvider sinkProvider)
 {
 }
 public TcpClientChannel(System.Collections.IDictionary properties, System.Runtime.Remoting.Channels.IClientChannelSinkProvider sinkProvider)
 {
 }
 public IpcChannel(System.Collections.IDictionary properties, System.Runtime.Remoting.Channels.IClientChannelSinkProvider clientSinkProvider, System.Runtime.Remoting.Channels.IServerChannelSinkProvider serverSinkProvider)
 {
 }
Пример #6
0
 public IpcChannel(System.Collections.IDictionary properties, System.Runtime.Remoting.Channels.IClientChannelSinkProvider clientSinkProvider, System.Runtime.Remoting.Channels.IServerChannelSinkProvider serverSinkProvider, System.Security.AccessControl.CommonSecurityDescriptor securityDescriptor)
 {
 }