WebDavClient class abstract interface

Implementers

Properties

closed bool
Checks whether this client is closed.
no setter
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

addCredentials(Uri url, String realm, HttpClientCredentials credentials) → void
Add credentials to be used for authorizing requests.
addProxyCredentials(String host, int port, String realm, HttpClientCredentials credentials) → void
Add credentials to be used for authorizing proxies.
close({bool force = false}) → void
Close connection
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
openUrl<P extends WebDavRequestParam>({required WebDavMethod method, required Uri url, required P param}) Future<WebDavRequest<WebDavResponse<WebDavResponseResultView<WebDavResource<WebDavResourceProp<dynamic, WebDavResourceError>, WebDavResourceError>>>, P>>
Opens a WebDAV connection.
setAuthenticate(Future<bool> f(Uri url, String scheme, String? realm)?) → void
Sets the function to be called when a site is requesting authentication.
setAuthenticateProxy(Future<bool> f(String host, int port, String scheme, String? realm)?) → void
Sets the function to be called when a proxy is requesting authentication.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

std({SecurityContext? context}) WebDavStdClient
Create WebDAV Client which comlies with RFC4918.
stdFromClient(HttpClient client) WebDavStdClient
Create WebDAV Client which comlies with RFC4918 by passing in HttpClient.