示例#1
0
        public virtual void SetInt4(IList <IDictionary <int, IList <HashSet <int> > > > int4, BAsyncResult <Object> asyncResult)
        {
            BRequest_RemoteListTypes_setInt4 req = new BRequest_RemoteListTypes_setInt4();

            req.int4Value = int4;
            transport.sendMethod(req, asyncResult);
        }
示例#2
0
        // checkpoint byps.gen.cs.GenRemoteStub:133
        public async Task SetInt4Async(IList <IDictionary <int, IList <HashSet <int> > > > int4)
        {
            BRequest_RemoteListTypes_setInt4 req = new BRequest_RemoteListTypes_setInt4();

            req.int4Value = int4;
            Task <Object> task = Task <Object> .Factory.FromAsync(transport.BeginSend <Object>, transport.EndSend <Object>, req, null);

            await task;
        }
示例#3
0
        public override void write(Object obj1, BOutput bout1, long version)
        {
            BRequest_RemoteListTypes_setInt4 obj = (BRequest_RemoteListTypes_setInt4)obj1;
            BOutputBin bout = (BOutputBin)bout1;
            BBufferBin bbuf = bout.bbuf;

            // checkpoint byps.gen.cs.PrintContext:494
            bout.writeObj(obj.int4Value, false, byps.test.api.BSerializer_1633500852.instance);
        }
示例#4
0
        public override Object read(Object obj1, BInput bin1, long version)
        {
            BInputBin bin = (BInputBin)bin1;
            BRequest_RemoteListTypes_setInt4 obj = (BRequest_RemoteListTypes_setInt4)(obj1 != null ? obj1 : bin.onObjectCreated(new BRequest_RemoteListTypes_setInt4()));

            BBufferBin bbuf = bin.bbuf;

            // checkpoint byps.gen.cs.PrintContext:449
            obj.int4Value = (IList <IDictionary <int, IList <HashSet <int> > > >)bin.readObj(false, null);

            return(obj);
        }
示例#5
0
		// checkpoint byps.gen.cs.GenRemoteStub:133
		public async Task SetInt4Async(IList<IDictionary<int,IList<HashSet<int>>>> int4){
			BRequest_RemoteListTypes_setInt4 req = new BRequest_RemoteListTypes_setInt4();			
			req.int4Value = int4;
			Task<Object> task = Task<Object>.Factory.FromAsync(transport.BeginSend<Object>, transport.EndSend<Object>, req, null);
			await task;
		}
示例#6
0
		public virtual void SetInt4(IList<IDictionary<int,IList<HashSet<int>>>> int4, BAsyncResult<Object> asyncResult) {
			BRequest_RemoteListTypes_setInt4 req = new BRequest_RemoteListTypes_setInt4();			
			req.int4Value = int4;
			transport.sendMethod(req, asyncResult);
		}