Click or drag to resize

BaseEndpointHttpMode Property

Gets/Sets the HTTP Mode used for requests.

Namespace:  VDS.RDF
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public virtual string HttpMode { get; set; }

Property Value

Type: String
Remarks

This property defaults to the value AUTO. in AUTO mode GET will be used unless the total length of query parameters exceeeds 2048 characters or the query contains non-ASCII characters, and POST will be used for longer queries or where the query contains non-ASCII characters.

Only AUTO, GET and POST are permitted - implementations may override this property if they wish to support more methods.

See Also