16 references to ValidateValueCallback
Microsoft.TestPlatform.CommunicationUtilities (13)
_generated\112\TestPlatformJsonContext.GetJsonTypeInfo.g.cs (1)
302
if (type == typeof(global::Microsoft.VisualStudio.TestPlatform.ObjectModel.
ValidateValueCallback
))
_generated\63\TestPlatformJsonContext.TestProperty.g.cs (3)
141
var info4 = new global::System.Text.Json.Serialization.Metadata.JsonPropertyInfoValues<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.
ValidateValueCallback
>
156
AttributeProviderFactory = static () => typeof(global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty).GetProperty("ValidateValueCallback", InstanceMemberBindingFlags, null, typeof(global::Microsoft.VisualStudio.TestPlatform.ObjectModel.
ValidateValueCallback
), global::System.Array.Empty<global::System.Type>(), null),
159
properties[4] = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreatePropertyInfo<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.
ValidateValueCallback
>(options, info4);
_generated\70\TestPlatformJsonContext.ValidateValueCallback.g.cs (9)
13
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.
ValidateValueCallback
>? _ValidateValueCallback;
19
public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.
ValidateValueCallback
> ValidateValueCallback
22
get => _ValidateValueCallback ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.
ValidateValueCallback
>)Options.GetTypeInfo(typeof(global::Microsoft.VisualStudio.TestPlatform.ObjectModel.
ValidateValueCallback
));
25
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.
ValidateValueCallback
> Create_ValidateValueCallback(global::System.Text.Json.JsonSerializerOptions options)
27
if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.
ValidateValueCallback
>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.
ValidateValueCallback
> jsonTypeInfo))
29
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.
ValidateValueCallback
>(options, global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.GetUnsupportedTypeConverter<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.
ValidateValueCallback
>());
Microsoft.VisualStudio.TestPlatform.ObjectModel (3)
TestProperty\TestProperty.cs (3)
38
private TestProperty(string id, string label, string category, string description, Type valueType,
ValidateValueCallback
? validateValueCallback, TestPropertyAttributes attributes)
113
public
ValidateValueCallback
? ValidateValueCallback { get; }
307
public static TestProperty Register(string id, string label, string category, string description, Type valueType,
ValidateValueCallback
? validateValueCallback, TestPropertyAttributes attributes, Type owner)