Interface IWebDavResponse
Access to all elements that needs to be set during a WebDAV response
Namespace:FubarDev.WebDavServer
Assembly:FubarDev.WebDavServer.dll
Syntax
public interface IWebDavResponse
Properties
| Improve this Doc View SourceBody
Gets the response body stream
Declaration
[NotNull]
Stream Body { get; }
Property Value
Type | Description |
---|---|
Stream |
ContentType
Gets or sets the content type
Declaration
[NotNull]
string ContentType { get; set; }
Property Value
Type | Description |
---|---|
String |
Dispatcher
Gets the dispatcher that handles all WebDAV requests
Declaration
[NotNull]
IWebDavDispatcher Dispatcher { get; }
Property Value
Type | Description |
---|---|
IWebDavDispatcher |
Headers
Gets the HTTP response headers
Declaration
[NotNull]
IDictionary<string, string[]> Headers { get; }
Property Value
Type | Description |
---|---|
IDictionary<String, String[]> |