Class TitleInfo
Core details about the title.
Inheritance
System.Object
TitleInfo
Implements
System.IEquatable<TitleInfo>
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.TitleConfiguration
Assembly: CrashCABN.TitleConfiguration.Abstractions.dll
Syntax
public class TitleInfo : IEquatable<TitleInfo>
Constructors
View SourceTitleInfo(String, String)
Initializes a new instance of the TitleInfo class.
Declaration
public TitleInfo(string titleName, string devFlagFileName = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | titleName | The title name. |
System.String | devFlagFileName | The name of the file that indicates the crash is from a non-retail environment. |
Fields
View SourceDefaultDevFlagFileName
Declaration
public const string DefaultDevFlagFileName = "devBuild.txt"
Field Value
Type | Description |
---|---|
System.String |
Properties
View SourceDevFlagFileName
Gets the name of the file that indicates the crash is from a non-retail environment.
Declaration
public string DevFlagFileName { get; }
Property Value
Type | Description |
---|---|
System.String |
TitleName
Gets the name the title is known by in CrashCABN.
Declaration
[Required]
public string TitleName { get; }
Property Value
Type | Description |
---|---|
System.String |
Implements
System.IEquatable<T>