RoutePattern.GetParameter(String) Method
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.
Gets the parameter matching the given name.
public:
Microsoft::AspNetCore::Routing::Patterns::RoutePatternParameterPart ^ GetParameter(System::String ^ name);
public Microsoft.AspNetCore.Routing.Patterns.RoutePatternParameterPart GetParameter (string name);
public Microsoft.AspNetCore.Routing.Patterns.RoutePatternParameterPart? GetParameter (string name);
member this.GetParameter : string -> Microsoft.AspNetCore.Routing.Patterns.RoutePatternParameterPart
Public Function GetParameter (name As String) As RoutePatternParameterPart
Parameters
- name
- String
The name of the parameter to match.
Returns
The matching parameter or null
if no parameter matches the given name.