Show / Hide Table of Contents

Class IngestCrashMessage

Corresponds to a pull ingestion request to download and perform analysis/bug filing on a crash for a given title.

Inheritance
System.Object
IngestCrashMessage
Implements
System.IEquatable<IngestCrashMessage>
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: CrashCABN.CrashSources
Assembly: CrashCABN.CrashSources.Abstractions.dll
Syntax
public class IngestCrashMessage : IEquatable<IngestCrashMessage>

Constructors

View Source

IngestCrashMessage(String, Uri, Nullable<Double>)

Corresponds to a pull ingestion request to download and perform analysis/bug filing on a crash for a given title.

Declaration
public IngestCrashMessage(string TitleName, Uri CrashUri, double? ApportionedHits = default(double? ))
Parameters
Type Name Description
System.String TitleName

The title name or secret associated with the crash.

System.Uri CrashUri

The source crash URI, such as a Watson-hosted CAB or ZIP file.

System.Nullable<System.Double> ApportionedHits

The total number of hits apportioned to the crash, if known.

Properties

View Source

ApportionedHits

Declaration
public double? ApportionedHits { get; set; }
Property Value
Type Description
System.Nullable<System.Double>
View Source

CrashUri

Declaration
public Uri CrashUri { get; set; }
Property Value
Type Description
System.Uri
View Source

TitleName

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

Implements

System.IEquatable<T>
  • View Source
In This Article
Back to top Generated by DocFX