Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,19 @@ public static IEnumerable<TypeData> Get()

var td1 = new TypeData(@"System.Diagnostics.Eventing.Reader.EventLogConfiguration", true);
td1.DefaultDisplayPropertySet =
new PropertySetData(new [] { "LogName", "MaximumSizeInBytes", "RecordCount", "LogMode" }) { Name = "DefaultDisplayPropertySet" };
new PropertySetData(new[] { "LogName", "MaximumSizeInBytes", "RecordCount", "LogMode" }) { Name = "DefaultDisplayPropertySet" };
yield return td1;

var td2 = new TypeData(@"System.Diagnostics.Eventing.Reader.EventLogRecord", true);
td2.DefaultDisplayPropertySet =
new PropertySetData(new [] { "TimeCreated", "ProviderName", "Id", "Message" }) { Name = "DefaultDisplayPropertySet" };
new PropertySetData(new[] { "TimeCreated", "ProviderName", "Id", "Message" }) { Name = "DefaultDisplayPropertySet" };
yield return td2;

var td3 = new TypeData(@"System.Diagnostics.Eventing.Reader.ProviderMetadata", true);
td3.Members.Add("ProviderName",
new AliasPropertyData("ProviderName", "Name"));
td3.DefaultDisplayPropertySet =
new PropertySetData(new [] { "Name", "LogLinks" }) { Name = "DefaultDisplayPropertySet" };
new PropertySetData(new[] { "Name", "LogLinks" }) { Name = "DefaultDisplayPropertySet" };
yield return td3;

#if !CORECLR
Expand All @@ -65,12 +65,12 @@ public static IEnumerable<TypeData> Get()

var td5 = new TypeData(@"Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSample", true);
td5.DefaultDisplayPropertySet =
new PropertySetData(new [] { "Path", "InstanceName", "CookedValue" }) { Name = "DefaultDisplayPropertySet" };
new PropertySetData(new[] { "Path", "InstanceName", "CookedValue" }) { Name = "DefaultDisplayPropertySet" };
yield return td5;

var td6 = new TypeData(@"Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet", true);
td6.DefaultDisplayPropertySet =
new PropertySetData(new [] { "Timestamp", "Readings" }) { Name = "DefaultDisplayPropertySet" };
new PropertySetData(new[] { "Timestamp", "Readings" }) { Name = "DefaultDisplayPropertySet" };
yield return td6;

var td7 = new TypeData(@"Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet", true);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public static IEnumerable<TypeData> Get()
td14.SerializationMethod = "SpecificProperties";
td14.SerializationDepth = 2;
td14.PropertySerializationSet =
new PropertySetData(new [] { "Breakpoints", "ResumeAction", "SerializedInvocationInfo" }) { Name = "PropertySerializationSet" };
new PropertySetData(new[] { "Breakpoints", "ResumeAction", "SerializedInvocationInfo" }) { Name = "PropertySerializationSet" };
yield return td14;

var td15 = new TypeData(@"Deserialized.System.Management.Automation.DebuggerStopEventArgs", true);
Expand Down
Loading