コード例 #1
0
 public UpdateCheckResult(UpdateResultType resultType, string message, string messageTitle, string downloadUrl)
 {
     ResultType   = resultType;
     Message      = message;
     MessageTitle = messageTitle;
     DownloadUrl  = downloadUrl;
 }
コード例 #2
0
 public RepositoryException(string message, UpdateResultType type) : base(message)
 {
     Type = type; ErrorMsg = message;
 }
コード例 #3
0
 public RepositoryException(UpdateResultType type)
 {
     Type = type;
 }
コード例 #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="UpdateResult"/> class.
 /// </summary>
 public UpdateResult()
 {
     this.resultType = UpdateResultType.NoUpdateAvailable;
 }
コード例 #5
0
ファイル: UpdateResult.cs プロジェクト: VRCMG/Presence
 private UpdateResult(UpdateResultType type, string downloadURL)
 {
     Type        = type;
     DownloadURL = downloadURL;
 }
コード例 #6
0
 public UpdateResult(UpdateResultType type, string detail)
 {
     this.type = type;
     this.detail = detail;
 }
コード例 #7
0
 public UpdateResult(UpdateResultType type)
 {
     this.type = type;
     this.detail = "";
 }