///<summary>
        /// Asynchronous invoker for  'Azos.Sky.Contracts.IGDIDPersistenceRemoteLocation.Write'.
        /// This is a two-way call per contract specification, meaning - the server sends the result back either
        ///  returning no exception or WrappedExceptionData instance.
        /// CallSlot is returned that can be queried for CallStatus, ResponseMsg and result.
        ///</summary>
        public CallSlot Async_Write(@System.@String @sequenceName, @System.@String @scopeName, @Azos.@Data.@GDID @value)
        {
            var request = new RequestAnyMsg(s_ts_CONTRACT, @s_ms_Write_1, false, RemoteInstance, new object[] { @sequenceName, @scopeName, @value });

            return(DispatchCall(request));
        }
        ///<summary>
        /// Synchronous invoker for  'Azos.Sky.Contracts.IGDIDPersistenceRemoteLocation.Write'.
        /// This is a two-way call per contract specification, meaning - the server sends the result back either
        ///  returning no exception or WrappedExceptionData 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 void @Write(@System.@String @sequenceName, @System.@String @scopeName, @Azos.@Data.@GDID @value)
        {
            var call = Async_Write(@sequenceName, @scopeName, @value);

            call.CheckVoidValue();
        }