C# Класс WixSharp.WixGuid

Wix# wrapper around T:System.Guid. WixGuid allows generation of continuous GUIDs for for composing reproducible WiX source files.
Наследование: WixObject
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
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