Dropbox .NET SDK

Class MalwareExclusionState

Malware exclusion list state

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

Constructors

View Source

MalwareExclusionState(long, string, string)

Initializes a new instance of the MalwareExclusionState class.

Declaration
public MalwareExclusionState(long excludedFileHashesCount, string filePathFromLastExclusion = null, string filePathFromLastInclusion = null)
Parameters
Type Name Description
long excludedFileHashesCount

The number of files that are excluded from the monitoring for malware alerts.

string filePathFromLastExclusion

The file path of the last exclusion operation.

string filePathFromLastInclusion

The file path of the last inclusion operation.

Properties

View Source

ExcludedFileHashesCount

The number of files that are excluded from the monitoring for malware alerts.

Declaration
public long ExcludedFileHashesCount { get; protected set; }
Property Value
Type Description
long
View Source

FilePathFromLastExclusion

The file path of the last exclusion operation.

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

FilePathFromLastInclusion

The file path of the last inclusion operation.

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