HttpPatchAttribute Constructors

Definition

Overloads

HttpPatchAttribute()

Creates a new HttpPatchAttribute.

HttpPatchAttribute(String)

Creates a new HttpPatchAttribute with the given route template.

HttpPatchAttribute()

Source:
HttpPatchAttribute.cs
Source:
HttpPatchAttribute.cs

Creates a new HttpPatchAttribute.

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

Applies to

HttpPatchAttribute(String)

Source:
HttpPatchAttribute.cs
Source:
HttpPatchAttribute.cs

Creates a new HttpPatchAttribute with the given route template.

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

Parameters

template
String

The route template. May not be null.

Applies to