2 references to PropertyValue
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\TraceLogging\PropertyValue.cs (2)
118if (type == typeof(double)) return value => new PropertyValue((double)value!); 243if (type == typeof(double)) { var f = GetGetMethod<double>(property); return container => new PropertyValue(f((TContainer)container.ReferenceValue!)); }