Click or drag to resize

OptionsInfo Class

IT Hit WebDAV Classes Reference
Options of an item, described by supported HTTP extensions
Inheritance Hierarchy
SystemObject
  ITHit.WebDAV.ClientOptionsInfo

Namespace:  ITHit.WebDAV.Client
Assembly:  ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 6.0.4052-Beta
Syntax
[SerializableAttribute]
public sealed class OptionsInfo

The OptionsInfo type exposes the following members.

Constructors
  NameDescription
Public methodOptionsInfo
Creates new instance of OptionsInfo class
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
  NameDescription
Public fieldFeatures
Classes of WebDAV protocol supported by the item.
Public fieldIisServer
Returns true if current server is IIS
Public fieldMsAuthorViaDav
A nonstandard header meaning the server supports WebDAV protocol.
Top
Examples
OptionsInfo options = await root.SupportedFeaturesAsync();
Features features = options.Features;
if ((features & Features.Class2) != 0)
    Console.WriteLine("Resourse supports locking.");
else
    Console.WriteLine("Resourse does not support locking.");
See Also