C# 클래스 FileSystem.CsvFile

Wraps a CSV file which contains a set of named values.
One tag per line with three fields: name, data type and value. The data type is the name of a BuiltInType (see the BuiltInType enumeration).
파일 보기 프로젝트 열기: OPCFoundation/UA-.NET 1 사용 예제들

공개 메소드들

메소드 설명
CsvFile ( ) : System

Creates an empty file,

GetValue ( string name ) : object

Returns the value with the specified name.

Load ( FileInfo source ) : void

Loads the tags from the specified file.

Save ( FileInfo source ) : void

Saves the tags to the specified file.

SetValue ( string name, object value ) : void

Sets the value with the specified name.

메소드 상세

CsvFile() 공개 메소드

Creates an empty file,
public CsvFile ( ) : System
리턴 System

GetValue() 공개 메소드

Returns the value with the specified name.
public GetValue ( string name ) : object
name string
리턴 object

Load() 공개 메소드

Loads the tags from the specified file.
public Load ( FileInfo source ) : void
source System.IO.FileInfo
리턴 void

Save() 공개 메소드

Saves the tags to the specified file.
public Save ( FileInfo source ) : void
source System.IO.FileInfo
리턴 void

SetValue() 공개 메소드

Sets the value with the specified name.
public SetValue ( string name, object value ) : void
name string
value object
리턴 void