C# 클래스 WixSharp.WixGuid

Wix# wrapper around T:System.Guid. WixGuid allows generation of continuous GUIDs for for composing reproducible WiX source files.
상속: WixObject
파일 보기 프로젝트 열기: Eun/WixSharp 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
ConsistentGenerationStartValue System.SequentialGuid
Value System.Guid

공개 메소드들

메소드 설명
HashGuidByInteger ( System.Guid guid, int hashValue ) : System.Guid

Hashes the Guid by the specified integer hash value.

NewGuid ( ) : System.Guid

Returns new GUID.

NewGuid ( object seed ) : System.Guid

Returns new GUID.

WixGuid ( string guid ) : System

Initializes a new instance of the WixGuid class.

메소드 상세

HashGuidByInteger() 공개 정적인 메소드

Hashes the Guid by the specified integer hash value.
public static HashGuidByInteger ( System.Guid guid, int hashValue ) : System.Guid
guid System.Guid The GUID.
hashValue int The hash value.
리턴 System.Guid

NewGuid() 공개 정적인 메소드

Returns new GUID.
public static NewGuid ( ) : System.Guid
리턴 System.Guid

NewGuid() 공개 정적인 메소드

Returns new GUID.
public static NewGuid ( object seed ) : System.Guid
seed object
리턴 System.Guid

WixGuid() 공개 메소드

Initializes a new instance of the WixGuid class.
public WixGuid ( string guid ) : System
guid string The GUID value of the instance to be created.
리턴 System

프로퍼티 상세

ConsistentGenerationStartValue 공개적으로 정적으로 프로퍼티

Initial value to be used as a seed for Guid generation. If you want the Wix# project items to contain not random but reproducible sequential Guids you should initialize this field.
public static SequentialGuid,System ConsistentGenerationStartValue
리턴 System.SequentialGuid

Value 공개적으로 프로퍼티

GUID value of the WixGuid instance.
public Guid,System Value
리턴 System.Guid