Class PackageTelemetry
Serializable class containing information about an installed package.
Inheritance
System.Object
Namespace: Umbraco.Cms.Core.Telemetry.Models
Assembly: Umbraco.Core.dll
Syntax
[DataContract(Name = "packageTelemetry")]
public class PackageTelemetry
Properties
View SourceId
Gets or sets the identifier of the installed package.
Declaration
[DataMember(Name = "id")]
public string Id { get; set; }
Property Value
Type | Description |
---|---|
System.String | The identifier. |
Name
Gets or sets the name of the installed package.
Declaration
[DataMember(Name = "name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name. |
Version
Gets or sets the version of the installed package.
Declaration
[DataMember(Name = "version")]
public string Version { get; set; }
Property Value
Type | Description |
---|---|
System.String | The version. |