C# Класс OpenHome.Net.ControlPoint.ArgumentUint

Unsigned integer type argument. Only intended for use by auto-generated proxies.
Наследование: Argument
Показать файл Открыть проект

Открытые методы

Метод Описание
ArgumentUint ( ParameterUint aParameter ) : System

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)

ArgumentUint ( ParameterUint aParameter, uint aValue ) : System

Constructor for unsigned integer input argument for an action

Intended to be write only (its value is written on construction and not be later read)

Приватные методы

Метод Описание
ActionArgumentCreateUintInput ( IntPtr aParameter, uint aValue ) : IntPtr
ActionArgumentCreateUintOutput ( IntPtr aParameter ) : IntPtr
ActionArgumentValueUint ( IntPtr aHandle ) : uint
Value ( ) : uint

Read the value of an unsigned integer argument.

Only intended for use with output arguments inside the invocation completed callback.

Описание методов

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

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

Constructor for unsigned integer input argument for an action
Intended to be write only (its value is written on construction and not be later read)
public ArgumentUint ( ParameterUint aParameter, uint aValue ) : 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.AddInputParameter
aValue uint Value for the argument
Результат System