Ejemplo n.º 1
0
 public IsoDetailsResults(string Name, string TitleID, string DiscNumber)
 {
     this.Results         = IsoDetailsResultsType.Completed;
     this.ConsolePlatform = IsoDetailsPlatform.Xbox;
     this.Name            = Name;
     this.TitleID         = TitleID;
     this.MediaID         = "00000000";
     this.Platform        = "0";
     this.ExType          = "0";
     this.DiscNumber      = DiscNumber;
 }
Ejemplo n.º 2
0
 public IsoDetailsResults(string Name, string TitleID, string DiscNumber)
 {
     this.Results = IsoDetailsResultsType.Completed;
     this.ConsolePlatform = IsoDetailsPlatform.Xbox;
     this.Name = Name;
     this.TitleID = TitleID;
     this.MediaID = "00000000";
     this.Platform = "0";
     this.ExType = "0";
     this.DiscNumber = DiscNumber;
 }
Ejemplo n.º 3
0
 public IsoDetailsResults(IsoDetailsResultsType Type, string Message)
 {
     this.Results = Type;
     if (Type == IsoDetailsResultsType.Error)
     {
         this.ErrorMessage = Message;
     }
     if (Type == IsoDetailsResultsType.Progress)
     {
         this.ProgressMessage = Message;
     }
 }
Ejemplo n.º 4
0
 public IsoDetailsResults(IsoDetailsResultsType Type, string Message)
 {
     this.Results = Type;
     if (Type == IsoDetailsResultsType.Error)
     {
         this.ErrorMessage = Message;
     }
     if (Type == IsoDetailsResultsType.Progress)
     {
         this.ProgressMessage = Message;
     }
 }
Ejemplo n.º 5
0
 public IsoDetailsResults(string Name, string TitleID, string MediaID, string Platform, string ExType, string DiscNumber, string DiscCount)
 {
     Results         = IsoDetailsResultsType.Completed;
     ConsolePlatform = IsoDetailsPlatform.Xbox360;
     this.Name       = Name;
     this.TitleID    = TitleID;
     this.MediaID    = MediaID;
     this.Platform   = Platform;
     this.ExType     = ExType;
     this.DiscNumber = DiscNumber;
     this.DiscCount  = DiscCount;
 }
Ejemplo n.º 6
0
 public IsoDetailsResults(string Name, string TitleID, string MediaID, string Platform, string ExType, string DiscNumber, string DiscCount, Image Thumbnail)
 {
     this.Results = IsoDetailsResultsType.Completed;
     this.ConsolePlatform = IsoDetailsPlatform.Xbox360;
     this.Name = Name;
     this.TitleID = TitleID;
     this.MediaID = MediaID;
     this.Platform = Platform;
     this.ExType = ExType;
     this.DiscNumber = DiscNumber;
     this.DiscCount = DiscCount;
     this.Thumbnail = Thumbnail;
 }