Dropbox .NET SDK
Show / Hide Table of Contents

Class GetFileMetadataBatchResult

Per file results of GetFileMetadataBatchAsync(GetFileMetadataBatchArg).

Inheritance
object
GetFileMetadataBatchResult
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class GetFileMetadataBatchResult

Constructors

View Source

GetFileMetadataBatchResult(string, GetFileMetadataIndividualResult)

Initializes a new instance of the GetFileMetadataBatchResult class.

Declaration
public GetFileMetadataBatchResult(string file, GetFileMetadataIndividualResult result)
Parameters
Type Name Description
string file

This is the input file identifier corresponding to one of Files.

GetFileMetadataIndividualResult result

The result for this particular file.

Properties

View Source

File

This is the input file identifier corresponding to one of Files.

Declaration
public string File { get; protected set; }
Property Value
Type Description
string
View Source

Result

The result for this particular file.

Declaration
public GetFileMetadataIndividualResult Result { get; protected set; }
Property Value
Type Description
GetFileMetadataIndividualResult
  • View Source
In this article
Back to top Dropbox .NET SDK