Show / Hide Table of Contents

Class Result.PageStatsData

Summary statistics for the page, such as number of JavaScript bytes, number of HTML bytes, etc.

Inheritance
System.Object
Result.PageStatsData
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.Pagespeedonline.v2.Data
Assembly: Google.Apis.Pagespeedonline.v2.dll
Syntax
public class PageStatsData

Properties

CssResponseBytes

Number of uncompressed response bytes for CSS resources on the page.

Declaration
[JsonProperty("cssResponseBytes")]
public virtual long? CssResponseBytes { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

FlashResponseBytes

Number of response bytes for flash resources on the page.

Declaration
[JsonProperty("flashResponseBytes")]
public virtual long? FlashResponseBytes { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

HtmlResponseBytes

Number of uncompressed response bytes for the main HTML document and all iframes on the page.

Declaration
[JsonProperty("htmlResponseBytes")]
public virtual long? HtmlResponseBytes { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

ImageResponseBytes

Number of response bytes for image resources on the page.

Declaration
[JsonProperty("imageResponseBytes")]
public virtual long? ImageResponseBytes { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

JavascriptResponseBytes

Number of uncompressed response bytes for JS resources on the page.

Declaration
[JsonProperty("javascriptResponseBytes")]
public virtual long? JavascriptResponseBytes { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

NumberCssResources

Number of CSS resources referenced by the page.

Declaration
[JsonProperty("numberCssResources")]
public virtual int? NumberCssResources { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

NumberHosts

Number of unique hosts referenced by the page.

Declaration
[JsonProperty("numberHosts")]
public virtual int? NumberHosts { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

NumberJsResources

Number of JavaScript resources referenced by the page.

Declaration
[JsonProperty("numberJsResources")]
public virtual int? NumberJsResources { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

NumberResources

Number of HTTP resources loaded by the page.

Declaration
[JsonProperty("numberResources")]
public virtual int? NumberResources { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

NumberStaticResources

Number of static (i.e. cacheable) resources on the page.

Declaration
[JsonProperty("numberStaticResources")]
public virtual int? NumberStaticResources { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

OtherResponseBytes

Number of response bytes for other resources on the page.

Declaration
[JsonProperty("otherResponseBytes")]
public virtual long? OtherResponseBytes { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

TextResponseBytes

Number of uncompressed response bytes for text resources not covered by other statistics (i.e non-HTML, non-script, non-CSS resources) on the page.

Declaration
[JsonProperty("textResponseBytes")]
public virtual long? TextResponseBytes { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

TotalRequestBytes

Total size of all request bytes sent by the page.

Declaration
[JsonProperty("totalRequestBytes")]
public virtual long? TotalRequestBytes { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
Back to top