Show / Hide Table of Contents

Class TitleMapping

Inheritance
object
TitleMapping
Implements
IEquatable<TitleMapping>
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: CrashCABN.Gateway
Assembly: CrashCABN.TitleMapping.Abstractions.dll
Syntax
public record TitleMapping : IEquatable<TitleMapping>

Constructors

View Source

TitleMapping(string, bool, bool, bool)

Declaration
public TitleMapping(string Secret, bool PushToV1, bool PushToV2, bool DevOnly)
Parameters
Type Name Description
string Secret

The name that the title is known by.

bool PushToV1

True if crashes should be pushed to V1.

bool PushToV2

True if crashes should be pushed to V2.

bool DevOnly

True if only dev crashes should be pushed.

Properties

View Source

DevOnly

True if only dev crashes should be pushed.

Declaration
public bool DevOnly { get; init; }
Property Value
Type Description
bool
View Source

PushToV1

True if crashes should be pushed to V1.

Declaration
public bool PushToV1 { get; init; }
Property Value
Type Description
bool
View Source

PushToV2

True if crashes should be pushed to V2.

Declaration
public bool PushToV2 { get; init; }
Property Value
Type Description
bool
View Source

Secret

The name that the title is known by.

Declaration
public string Secret { get; init; }
Property Value
Type Description
string

Implements

IEquatable<T>
  • View Source
In this article
Back to top Generated by DocFX