Dropbox .NET SDK
Show / Hide Table of Contents

Class SearchError

The search error object

Inheritance
object
SearchError
SearchError.InternalError
SearchError.InvalidArgument
SearchError.Other
SearchError.Path
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class SearchError

Constructors

View Source

SearchError()

Initializes a new instance of the SearchError class.

Declaration
public SearchError()

Properties

View Source

AsInternalError

Gets this instance as a InternalError, or null.

Declaration
public SearchError.InternalError AsInternalError { get; }
Property Value
Type Description
SearchError.InternalError
View Source

AsInvalidArgument

Gets this instance as a InvalidArgument, or null.

Declaration
public SearchError.InvalidArgument AsInvalidArgument { get; }
Property Value
Type Description
SearchError.InvalidArgument
View Source

AsOther

Gets this instance as a Other, or null.

Declaration
public SearchError.Other AsOther { get; }
Property Value
Type Description
SearchError.Other
View Source

AsPath

Gets this instance as a Path, or null.

Declaration
public SearchError.Path AsPath { get; }
Property Value
Type Description
SearchError.Path
View Source

IsInternalError

Gets a value indicating whether this instance is InternalError

Declaration
public bool IsInternalError { get; }
Property Value
Type Description
bool
View Source

IsInvalidArgument

Gets a value indicating whether this instance is InvalidArgument

Declaration
public bool IsInvalidArgument { get; }
Property Value
Type Description
bool
View Source

IsOther

Gets a value indicating whether this instance is Other

Declaration
public bool IsOther { get; }
Property Value
Type Description
bool
View Source

IsPath

Gets a value indicating whether this instance is Path

Declaration
public bool IsPath { get; }
Property Value
Type Description
bool
  • View Source
In this article
Back to top Dropbox .NET SDK