7 references to DeserializeProperty
Microsoft.TestPlatform.CommunicationUtilities (7)
Serialization\TestRunCompleteEventArgsConverter.cs (7)
34var stats = DeserializeProperty<ITestRunStatistics>(root, "TestRunStatistics", options); 37var error = DeserializeProperty<Exception>(root, "Error", options); 38var attachmentSets = DeserializeProperty<Collection<AttachmentSet>>(root, "AttachmentSets", options) ?? new Collection<AttachmentSet>(); 39var invokedDataCollectors = DeserializeProperty<Collection<InvokedDataCollector>>(root, "InvokedDataCollectors", options) ?? new Collection<InvokedDataCollector>(); 40var elapsedTime = DeserializeProperty<TimeSpan>(root, "ElapsedTimeInRunningTests", options); 43result.Metrics = DeserializeProperty<IDictionary<string, object>>(root, "Metrics", options); 44result.DiscoveredExtensions = DeserializeProperty<Dictionary<string, HashSet<string>>>(root, "DiscoveredExtensions", options);