Class PrerenderStatusUpdatedEventArgs
Fired when a prerender attempt is updated.
public sealed class PrerenderStatusUpdatedEventArgs : EventArgs
- Inheritance
-
PrerenderStatusUpdatedEventArgs
- Inherited Members
Properties
DisallowedMojoInterface
This is used to give users more information about the name of Mojo interface that is incompatible with prerender and has caused the cancellation of the attempt.
[JsonPropertyName("disallowedMojoInterface")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? DisallowedMojoInterface { get; set; }
Property Value
Key
Gets or sets the key
[JsonPropertyName("key")]
public PreloadingAttemptKey Key { get; set; }
Property Value
MismatchedHeaders
Gets or sets the mismatchedHeaders
[JsonPropertyName("mismatchedHeaders")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public PrerenderMismatchedHeaders[]? MismatchedHeaders { get; set; }
Property Value
PipelineId
Gets or sets the pipelineId
[JsonPropertyName("pipelineId")]
public string PipelineId { get; set; }
Property Value
PrerenderStatus
Gets or sets the prerenderStatus
[JsonPropertyName("prerenderStatus")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public PrerenderFinalStatus? PrerenderStatus { get; set; }
Property Value
Status
Gets or sets the status
[JsonPropertyName("status")]
public PreloadingStatus Status { get; set; }