C# Class Opc.Ua.Configuration.ApplicationInstance.ArgumentDescription

Stores the description of an argument.
ファイルを表示 Open project: OPCFoundation/UA-.NET

Public Properties

Property Type Description
Description string
Name string
ValueAllowed bool
ValueRequired bool

Public Methods

Method Description
ArgumentDescription ( string name, bool valueRequired, bool valueAllowed, string description ) : System

Initializes a new instance of the ArgumentDescription class.

Method Details

ArgumentDescription() public method

Initializes a new instance of the ArgumentDescription class.
public ArgumentDescription ( string name, bool valueRequired, bool valueAllowed, string description ) : System
name string The name.
valueRequired bool if set to true a value is required.
valueAllowed bool if set to true a value is allowed.
description string The description.
return System

Property Details

Description public_oe property

The argument description.
public string Description
return string

Name public_oe property

The argument name.
public string Name
return string

ValueAllowed public_oe property

Whether the argument allows a value.
public bool ValueAllowed
return bool

ValueRequired public_oe property

Whether the argument requires a value.
public bool ValueRequired
return bool