HttpOptionsAttribute Constructors

Definition

Overloads

HttpOptionsAttribute()

Creates a new HttpOptionsAttribute.

HttpOptionsAttribute(String)

Creates a new HttpOptionsAttribute with the given route template.

HttpOptionsAttribute()

Source:
HttpOptionsAttribute.cs
Source:
HttpOptionsAttribute.cs

Creates a new HttpOptionsAttribute.

public:
 HttpOptionsAttribute();
public HttpOptionsAttribute ();
Public Sub New ()

Applies to

HttpOptionsAttribute(String)

Source:
HttpOptionsAttribute.cs
Source:
HttpOptionsAttribute.cs

Creates a new HttpOptionsAttribute with the given route template.

public:
 HttpOptionsAttribute(System::String ^ template);
public HttpOptionsAttribute (string template);
new Microsoft.AspNetCore.Mvc.HttpOptionsAttribute : string -> Microsoft.AspNetCore.Mvc.HttpOptionsAttribute
Public Sub New (template As String)

Parameters

template
String

The route template. May not be null.

Applies to