Show / Hide Table of Contents

Class ThreatEntrySet

A set of threats that should be added or removed from a client's local database.

Inheritance
System.Object
ThreatEntrySet
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 ThreatEntrySet : IDirectResponseSchema

Properties

CompressionType

The compression type for the entries in this set.

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

ETag

The ETag of the item.

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

RawHashes

The raw SHA256-formatted entries.

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

RawIndices

The raw removal indices for a local list.

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

RiceHashes

The encoded 4-byte prefixes of SHA256-formatted entries, using a Golomb-Rice encoding. The hashes are converted to uint32, sorted in ascending order, then delta encoded and stored as encoded_data.

Declaration
[JsonProperty("riceHashes")]
public virtual RiceDeltaEncoding RiceHashes { get; set; }
Property Value
Type Description
RiceDeltaEncoding

RiceIndices

The encoded local, lexicographically-sorted list indices, using a Golomb-Rice encoding. Used for sending compressed removal indices. The removal indices (uint32) are sorted in ascending order, then delta encoded and stored as encoded_data.

Declaration
[JsonProperty("riceIndices")]
public virtual RiceDeltaEncoding RiceIndices { get; set; }
Property Value
Type Description
RiceDeltaEncoding

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top