HttpActionDescriptor.SupportedHttpMethods Property

 

Gets the collection of supported HTTP methods for the descriptor.

Namespace:   System.Web.Http.Controllers
Assembly:  System.Web.Http (in System.Web.Http.dll)

Syntax

public virtual Collection<HttpMethod> SupportedHttpMethods { get; }
public:
property Collection<HttpMethod^>^ SupportedHttpMethods {
    virtual Collection<HttpMethod^>^ get();
}
abstract SupportedHttpMethods : Collection<HttpMethod> with get
override SupportedHttpMethods : Collection<HttpMethod> with get
Public Overridable ReadOnly Property SupportedHttpMethods As Collection(Of HttpMethod)

Property Value

Type: System.Collections.ObjectModel.Collection<HttpMethod>

The collection of supported HTTP methods for the descriptor.

See Also

HttpActionDescriptor Class
System.Web.Http.Controllers Namespace

Return to top