HttpPutAttribute Constructors

Definition

Overloads

HttpPutAttribute()

Creates a new HttpPutAttribute.

HttpPutAttribute(String)

Creates a new HttpPutAttribute with the given route template.

HttpPutAttribute()

Source:
HttpPutAttribute.cs
Source:
HttpPutAttribute.cs

Creates a new HttpPutAttribute.

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

Applies to

HttpPutAttribute(String)

Source:
HttpPutAttribute.cs
Source:
HttpPutAttribute.cs

Creates a new HttpPutAttribute with the given route template.

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

Parameters

template
String

The route template. May not be null.

Applies to