SupplyParameterFromQueryAttribute Class

Definition

Indicates that routing components may supply a value for the parameter from the current URL querystring. They may also supply further values if the URL querystring changes.

[System.AttributeUsage(System.AttributeTargets.Property, AllowMultiple=false, Inherited=true)]
public sealed class SupplyParameterFromQueryAttribute : Attribute
[System.AttributeUsage(System.AttributeTargets.Property, AllowMultiple=false, Inherited=true)]
public sealed class SupplyParameterFromQueryAttribute : Microsoft.AspNetCore.Components.CascadingParameterAttributeBase
[<System.AttributeUsage(System.AttributeTargets.Property, AllowMultiple=false, Inherited=true)>]
type SupplyParameterFromQueryAttribute = class
    inherit Attribute
[<System.AttributeUsage(System.AttributeTargets.Property, AllowMultiple=false, Inherited=true)>]
type SupplyParameterFromQueryAttribute = class
    inherit CascadingParameterAttributeBase
Public NotInheritable Class SupplyParameterFromQueryAttribute
Inherits Attribute
Public NotInheritable Class SupplyParameterFromQueryAttribute
Inherits CascadingParameterAttributeBase
Inheritance
SupplyParameterFromQueryAttribute
Inheritance
SupplyParameterFromQueryAttribute
Attributes

Constructors

SupplyParameterFromQueryAttribute()

Properties

Name

Gets or sets the name of the querystring parameter. If null, the querystring parameter is assumed to have the same name as the associated property.

Applies to