Exemplo n.º 1
0
        ///<summary>
        /// Asynchronous invoker for  'NFX.NUnit.Glue.ITestContractB.GetPersonalData'.
        /// This is a two-way call per contract specification, meaning - the server sends the result back either
        ///  returning no exception or RemoteExceptionData instance.
        /// CallSlot is returned that can be queried for CallStatus, ResponseMsg and result.
        ///</summary>
        public CallSlot Async_GetPersonalData(@System.@Int32[]  @ids, @System.@Boolean @onlyCertified, @System.@Decimal @maxSalary)
        {
            var request = new RequestAnyMsg(s_ts_CONTRACT, @s_ms_GetPersonalData_6, false, RemoteInstance, new object[] { @ids, @onlyCertified, @maxSalary });

            return(DispatchCall(request));
        }
Exemplo n.º 2
0
        ///<summary>
        /// Synchronous invoker for  'NFX.NUnit.Glue.ITestContractB.GetPersonalData'.
        /// This is a two-way call per contract specification, meaning - the server sends the result back either
        ///  returning '@System.@Collections.@Generic.@List<@NFX.@NUnit.@Glue.@PersonData>' or RemoteExceptionData instance.
        /// ClientCallException is thrown if the call could not be placed in the outgoing queue.
        /// RemoteException is thrown if the server generated exception during method execution.
        ///</summary>
        public @System.@Collections.@Generic.@List <@NFX.@NUnit.@Glue.@PersonData> @GetPersonalData(@System.@Int32[]  @ids, @System.@Boolean @onlyCertified, @System.@Decimal @maxSalary)
        {
            var call = Async_GetPersonalData(@ids, @onlyCertified, @maxSalary);

            return(call.GetValue <@System.@Collections.@Generic.@List <@NFX.@NUnit.@Glue.@PersonData> >());
        }