ValidateEnumeratedItemsAttribute Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ValidateEnumeratedItemsAttribute() |
Initializes a new instance of the ValidateEnumeratedItemsAttribute class. |
ValidateEnumeratedItemsAttribute(Type) |
Initializes a new instance of the ValidateEnumeratedItemsAttribute class. |
ValidateEnumeratedItemsAttribute()
Initializes a new instance of the ValidateEnumeratedItemsAttribute class.
public:
ValidateEnumeratedItemsAttribute();
public ValidateEnumeratedItemsAttribute ();
Public Sub New ()
Remarks
Using this constructor for a field/property tells the code generator to generate validation for the individual members of the enumerable's type.
Applies to
ValidateEnumeratedItemsAttribute(Type)
Initializes a new instance of the ValidateEnumeratedItemsAttribute class.
public:
ValidateEnumeratedItemsAttribute(Type ^ validator);
public ValidateEnumeratedItemsAttribute (Type validator);
new Microsoft.Extensions.Options.ValidateEnumeratedItemsAttribute : Type -> Microsoft.Extensions.Options.ValidateEnumeratedItemsAttribute
Public Sub New (validator As Type)
Parameters
- validator
- Type
A type that implements IValidateOptions<TOptions> for the enumerable's type.
Remarks
Using this constructor for a field/property tells the code generator to use the given type to validate the object held by the enumerable.