protected CrashData(string fullName, string name)
 {
     ver      = 2;
     headers  = new CrashDataHeaders();
     threads  = new List <CrashDataThread>();
     binaries = new List <CrashDataBinary>();
 }
 protected CrashData(string fullName, string name)
 {
     ver = 2;
     headers = new CrashDataHeaders();
     threads = new List<CrashDataThread>();
     binaries = new List<CrashDataBinary>();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="CrashTelemetryHeaders" /> class.
 /// </summary>
 /// <param name="headers">The headers.</param>
 internal CrashTelemetryHeaders(CrashDataHeaders headers)
 {
     this.Data = headers ?? new CrashDataHeaders();
 }