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