RouteValuesAddressMetadata 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
RouteValuesAddressMetadata(IReadOnlyDictionary<String,Object>) |
Creates a new instance of RouteValuesAddressMetadata with the provided required route values. |
RouteValuesAddressMetadata(String) |
Creates a new instance of RouteValuesAddressMetadata with the provided route name. |
RouteValuesAddressMetadata(String, IReadOnlyDictionary<String,Object>) |
Creates a new instance of RouteValuesAddressMetadata with the provided route name and required route values. |
RouteValuesAddressMetadata(IReadOnlyDictionary<String,Object>)
Creates a new instance of RouteValuesAddressMetadata with the provided required route values.
public:
RouteValuesAddressMetadata(System::Collections::Generic::IReadOnlyDictionary<System::String ^, System::Object ^> ^ requiredValues);
public RouteValuesAddressMetadata (System.Collections.Generic.IReadOnlyDictionary<string,object> requiredValues);
new Microsoft.AspNetCore.Routing.RouteValuesAddressMetadata : System.Collections.Generic.IReadOnlyDictionary<string, obj> -> Microsoft.AspNetCore.Routing.RouteValuesAddressMetadata
Public Sub New (requiredValues As IReadOnlyDictionary(Of String, Object))
Parameters
- requiredValues
- IReadOnlyDictionary<String,Object>
The required route values.
Applies to
RouteValuesAddressMetadata(String)
Creates a new instance of RouteValuesAddressMetadata with the provided route name.
public:
RouteValuesAddressMetadata(System::String ^ routeName);
public RouteValuesAddressMetadata (string routeName);
new Microsoft.AspNetCore.Routing.RouteValuesAddressMetadata : string -> Microsoft.AspNetCore.Routing.RouteValuesAddressMetadata
Public Sub New (routeName As String)
Parameters
- routeName
- String
The route name. Can be null.
Applies to
RouteValuesAddressMetadata(String, IReadOnlyDictionary<String,Object>)
Creates a new instance of RouteValuesAddressMetadata with the provided route name and required route values.
public:
RouteValuesAddressMetadata(System::String ^ routeName, System::Collections::Generic::IReadOnlyDictionary<System::String ^, System::Object ^> ^ requiredValues);
public RouteValuesAddressMetadata (string routeName, System.Collections.Generic.IReadOnlyDictionary<string,object> requiredValues);
new Microsoft.AspNetCore.Routing.RouteValuesAddressMetadata : string * System.Collections.Generic.IReadOnlyDictionary<string, obj> -> Microsoft.AspNetCore.Routing.RouteValuesAddressMetadata
Public Sub New (routeName As String, requiredValues As IReadOnlyDictionary(Of String, Object))
Parameters
- routeName
- String
The route name. Can be null.
- requiredValues
- IReadOnlyDictionary<String,Object>
The required route values.