Ejemplo n.º 1
0
        public static IFoo GetFoo(this Ipc ipc, string name)
        {
            Ipc <Foo> wrapper = ipc.GetObject <Foo>(name);

            return(wrapper.GetProxy());
        }
Ejemplo n.º 2
0
        public static IPrimitiveWrapper <int> GetInt32(this Ipc ipc, string name)
        {
            Ipc <int> wrapper = ipc.GetObject <int>(name);

            return(wrapper.GetProxy());
        }