コード例 #1
0
        public void CreateObjRef()
        {
            MarshalObject objMarshal = new MarshalObject();

            RemotingServices.SetObjectUriForMarshal(objMarshal, "MarshalByRefObjectTest.objMarshal1");
            RemotingServices.Marshal(objMarshal);

            ObjRef objRef = objMarshal.CreateObjRef(typeof(MarshalObject));

            Assert.AreEqual(objRef.URI, RemotingServices.GetObjectUri(objMarshal), "#A01");

            // TODO: When implemented in the mono RemotingServices class
            //RemotingServices.Disconnect(objMarshal);
        }
コード例 #2
0
        public void CreateObjRefThrowException()
        {
            MarshalObject objMarshal = new MarshalObject();

            ObjRef objRef = objMarshal.CreateObjRef(typeof(MarshalObject));
        }