C# 클래스 Opc.Ua.Configuration.ApplicationInstance.ArgumentDescription

Stores the description of an argument.
파일 보기 프로젝트 열기: OPCFoundation/UA-.NET

공개 프로퍼티들

프로퍼티 타입 설명
Description string
Name string
ValueAllowed bool
ValueRequired bool

공개 메소드들

메소드 설명
ArgumentDescription ( string name, bool valueRequired, bool valueAllowed, string description ) : System

Initializes a new instance of the ArgumentDescription class.

메소드 상세

ArgumentDescription() 공개 메소드

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.
리턴 System

프로퍼티 상세

Description 공개적으로 프로퍼티

The argument description.
public string Description
리턴 string

Name 공개적으로 프로퍼티

The argument name.
public string Name
리턴 string

ValueAllowed 공개적으로 프로퍼티

Whether the argument allows a value.
public bool ValueAllowed
리턴 bool

ValueRequired 공개적으로 프로퍼티

Whether the argument requires a value.
public bool ValueRequired
리턴 bool