Esempio n. 1
0
        public override Empty TestComplex1State(Complex1Input input)
        {
            State.BoolInfo.Value  = input.BoolValue;
            State.Int32Info.Value = input.Int32Value;

            return(new Empty());
        }
Esempio n. 2
0
        public override Complex1Output TestComplex1State(Complex1Input input)
        {
            State.BoolInfo.Value  = input.BoolValue;
            State.Int32Info.Value = input.Int32Value;

            return(new Complex1Output()
            {
                BoolValue = State.BoolInfo.Value,
                Int32Value = State.Int32Info.Value
            });
        }