Beispiel #1
0
        internal static void oneways(global::Test.TestHelper helper, Test.IMyClassPrx p)
        {
            Communicator communicator = helper.communicator();

            p = p.Clone(oneway: true);

            {
                p.IcePing();
            }

            {
                p.opVoid();
            }

            {
                p.opIdempotent();
            }

            {
                p.opNonmutating();
            }

            {
                try
                {
                    var(b1, b2) = p.opByte(0xff, 0x0f);
                    test(false);
                }
                catch (TwowayOnlyException)
                {
                }
            }
        }
Beispiel #2
0
 internal static void oneways(global::Test.TestHelper helper, Test.IMyClassPrx p)
 {
     p = p.Clone(oneway: true);
     p.IcePing();
     p.opVoid();
     p.opIdempotent();
     p.opOneway();
     p.opByte(0xff, 0x0f);
 }
Beispiel #3
0
 internal static void oneways(Test.IMyClassPrx p)
 {
     p = p.Clone(oneway: true);
     p.IcePing();
     p.opVoid();
     p.opIdempotent();
     p.opOneway();
     p.opOnewayMetadata();
     p.opByte(0xff, 0x0f);
 }