C# 클래스 ImageGlass.Library.FileAssociations.RegistryWrapper

Provides a streamlined interface for reading and writing to the registry.
파일 보기 프로젝트 열기: d2phap/ImageGlass

공개 메소드들

메소드 설명
Delete ( string path, string valueName ) : void

Deletes specified value;

Read ( string path, string valueName ) : object

Reads specified value from the registry.

Write ( string path, string valueName, object value ) : void

Writes specified value to the registry.

메소드 상세

Delete() 공개 메소드

Deletes specified value;
public Delete ( string path, string valueName ) : void
path string Full registry key (minus root) that contains the value to be deleted.
valueName string Name of value to be deleted
리턴 void

Read() 공개 메소드

Reads specified value from the registry.
public Read ( string path, string valueName ) : object
path string Full registry key (minus root) that contains value.
valueName string Name of the value within key that will be read.
리턴 object

Write() 공개 메소드

Writes specified value to the registry.
public Write ( string path, string valueName, object value ) : void
path string Full registry key (minus root) that will contain the value.
valueName string Name of the value within key that will be written.
value object Value to be written
리턴 void