Show / Hide Table of Contents

Class CollectionActionResult

Information about the success for a collection action

Inheritance
Object
CollectionActionResult
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace:FubarDev.WebDavServer.FileSystem
Assembly:FubarDev.WebDavServer.dll
Syntax
public class CollectionActionResult

Constructors

| Improve this Doc View Source

CollectionActionResult(ICollection, IReadOnlyCollection<IEntry>)

Initializes a new instance of the CollectionActionResult class.

Declaration
public CollectionActionResult([NotNull] ICollection target, [NotNull, ItemNotNull] IReadOnlyCollection<IEntry> createdChildEntries)
Parameters
Type Name Description
ICollection target

The target to create the result information for

IReadOnlyCollection<IEntry> createdChildEntries

The created child entries

| Improve this Doc View Source

CollectionActionResult(ICollection, IReadOnlyCollection<IEntry>, IEntry, WebDavStatusCode)

Initializes a new instance of the CollectionActionResult class.

Declaration
public CollectionActionResult([NotNull] ICollection target, [NotNull, ItemNotNull] IReadOnlyCollection<IEntry> createdChildEntries, [CanBeNull] IEntry failedEntry, WebDavStatusCode errorStatusCode)
Parameters
Type Name Description
ICollection target

The target to create the result information for

IReadOnlyCollection<IEntry> createdChildEntries

The created child entries

IEntry failedEntry

The failed child entry

WebDavStatusCode errorStatusCode

The status code for the failed child entry

Properties

| Improve this Doc View Source

CreatedChildEntries

Gets the created child entries

Declaration
[NotNull]
[ItemNotNull]
public IReadOnlyCollection<IEntry> CreatedChildEntries { get; }
Property Value
Type Description
IReadOnlyCollection<IEntry>
| Improve this Doc View Source

ErrorStatusCode

Gets the status code for the failed entry

Declaration
public WebDavStatusCode ErrorStatusCode { get; }
Property Value
Type Description
WebDavStatusCode
| Improve this Doc View Source

FailedEntry

Gets the failed entry

Declaration
[CanBeNull]
public IEntry FailedEntry { get; }
Property Value
Type Description
IEntry
| Improve this Doc View Source

Target

Gets the target this result information object is for

Declaration
[NotNull]
public ICollection Target { get; }
Property Value
Type Description
ICollection
  • Improve this Doc
  • View Source
Back to top Copyright © 2016-2017 Fubar Development Junker
Generated by DocFX