ExtensionDefinitionName Property |
Name of the Extension definition
Namespace:
Hummingbird.TestFramework.Extensibility
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax [DataMemberAttribute]
public string Name { get; set; }
<DataMemberAttribute>
Public Property Name As String
Get
Set
public:
[DataMemberAttribute]
property String^ Name {
String^ get ();
void set (String^ value);
}
[<DataMemberAttribute>]
member Name : string with get, set
Property Value
Type:
StringRemarks Id contains the Unique Identifier of the extension. Same Id is considered to be the same extension. When adding an extension with the Id, upgrade or downgrade will be performed even if the name is not the same.
This Id must be the same Guid of your Assembly defined in AssemblyInfo (for C#: AssemblyInfo.cs)
This Id is also used to get Extension installation information using Global.GetExtensionInformation(Id).
See Also