Show / Hide Table of Contents

Class ThreatMatch

A match when checking a threat entry in the Safe Browsing threat lists.

Inheritance
System.Object
ThreatMatch
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Safebrowsing.v4.Data
Assembly: Google.Apis.Safebrowsing.v4.dll
Syntax
public class ThreatMatch : IDirectResponseSchema

Properties

CacheDuration

The cache lifetime for the returned match. Clients must not cache this response for more than this duration to avoid false positives.

Declaration
[JsonProperty("cacheDuration")]
public virtual object CacheDuration { get; set; }
Property Value
Type Description
System.Object

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

PlatformType

The platform type matching this threat.

Declaration
[JsonProperty("platformType")]
public virtual string PlatformType { get; set; }
Property Value
Type Description
System.String

Threat

The threat matching this threat.

Declaration
[JsonProperty("threat")]
public virtual ThreatEntry Threat { get; set; }
Property Value
Type Description
ThreatEntry

ThreatEntryMetadata

Optional metadata associated with this threat.

Declaration
[JsonProperty("threatEntryMetadata")]
public virtual ThreatEntryMetadata ThreatEntryMetadata { get; set; }
Property Value
Type Description
ThreatEntryMetadata

ThreatEntryType

The threat entry type matching this threat.

Declaration
[JsonProperty("threatEntryType")]
public virtual string ThreatEntryType { get; set; }
Property Value
Type Description
System.String

ThreatType

The threat type matching this threat.

Declaration
[JsonProperty("threatType")]
public virtual string ThreatType { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top