HttpDeleteAttribute Constructors

Definition

Overloads

HttpDeleteAttribute()

Creates a new HttpDeleteAttribute.

HttpDeleteAttribute(String)

Creates a new HttpDeleteAttribute with the given route template.

HttpDeleteAttribute()

Source:
HttpDeleteAttribute.cs
Source:
HttpDeleteAttribute.cs

Creates a new HttpDeleteAttribute.

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

Applies to

HttpDeleteAttribute(String)

Source:
HttpDeleteAttribute.cs
Source:
HttpDeleteAttribute.cs

Creates a new HttpDeleteAttribute with the given route template.

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

Parameters

template
String

The route template. May not be null.

Applies to