C# 클래스 Goedel.Mesh.Platform.Register

Interface class to manage entries in the Windows Registry and file system. On non-windows machines, this can simply map to flat files.
파일 보기 프로젝트 열기: hallambaker/Mathematical-Mesh 1 사용 예제들

공개 메소드들

메소드 설명
GetKeys ( string KeyName ) : string>.Dictionary

Get windows registry keys matching a key name.

GetSubKeys ( string KeyName ) : List

Get registry sub keys

Read ( string KeyName, string &UDF ) : string

Read registry entries for the specified parameters.

Read ( string KeyName, string Entry, string &UDF ) : string

Read registry entries for the specified parameters.

ReadFile ( string KeyName, string Path ) : string

Get the file name to read a file from the specified keyname and path.

ReadFile ( string KeyName, string Path, string UDF ) : string

Get the file name to read a file from the specified keyname and path.

Write ( string KeyName, string Entry, string UDF ) : void

Create registry entries for the specified parameters.

WriteKey ( string KeyName, string Tag, string UDF ) : void

Create registry entries for the specified parameters and return the file name to write the data file to.

메소드 상세

GetKeys() 공개 정적인 메소드

Get windows registry keys matching a key name.
public static GetKeys ( string KeyName ) : string>.Dictionary
KeyName string The key to fetch.
리턴 string>.Dictionary

GetSubKeys() 공개 정적인 메소드

Get registry sub keys
public static GetSubKeys ( string KeyName ) : List
KeyName string The registry key to retrieve.
리턴 List

Read() 공개 정적인 메소드

Read registry entries for the specified parameters.
public static Read ( string KeyName, string &UDF ) : string
KeyName string The Registry key to write to.
UDF string The fingerprint of the data object.
리턴 string

Read() 공개 정적인 메소드

Read registry entries for the specified parameters.
public static Read ( string KeyName, string Entry, string &UDF ) : string
KeyName string The Registry key to write to.
Entry string The name of the key to write to.
UDF string The fingerprint of the data object.
리턴 string

ReadFile() 공개 정적인 메소드

Get the file name to read a file from the specified keyname and path.
public static ReadFile ( string KeyName, string Path ) : string
KeyName string The Registry key to write to.
Path string The Registry Path to write to
리턴 string

ReadFile() 공개 정적인 메소드

Get the file name to read a file from the specified keyname and path.
public static ReadFile ( string KeyName, string Path, string UDF ) : string
KeyName string The Registry key to write to.
Path string The Registry Path to write to
UDF string Fingerprint of the object to read.
리턴 string

Write() 공개 정적인 메소드

Create registry entries for the specified parameters.
public static Write ( string KeyName, string Entry, string UDF ) : void
KeyName string The Registry key to write to.
Entry string The name of the key to write to.
UDF string The fingerprint of the data object.
리턴 void

WriteKey() 공개 정적인 메소드

Create registry entries for the specified parameters and return the file name to write the data file to.
public static WriteKey ( string KeyName, string Tag, string UDF ) : void
KeyName string The Registry key to write to.
Tag string The name of the key to write to.
UDF string The fingerprint of the data object.
리턴 void