OpenHome.Net.ControlPoint.ArgumentUint.ArgumentUint C# (CSharp) Метод

ArgumentUint() публичный Метод

Constructor for unsigned integer output argument for an action
Intended to be created without any value. The value is later set after CpService.InvokeAction is called but before the invocation's callback is run)
public ArgumentUint ( ParameterUint aParameter ) : System
aParameter OpenHome.Net.Core.ParameterUint Defines the name plus any bounds to the value for the argument. /// Must have been previously added to the action using Action.AddOutputParameter
Результат System
        public ArgumentUint(ParameterUint aParameter)
        {
            iHandle = ActionArgumentCreateUintOutput(aParameter.Handle());
        }

Same methods

ArgumentUint::ArgumentUint ( ParameterUint aParameter, uint aValue ) : System