12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- using System;
- namespace Microsoft.Samples.AppUpdater
- {
- public class UpdateCompleteEventArgs : EventArgs
- {
- private bool _UpdateSucceeded;
- private Exception _FailureException;
- private string _ErrorMessage;
- private Version _NewVersion;
- public bool UpdateSucceeded
- {
- get
- {
- return _UpdateSucceeded;
- }
- set
- {
- _UpdateSucceeded = value;
- }
- }
- public Exception FailureException
- {
- get
- {
- return _FailureException;
- }
- set
- {
- _FailureException = value;
- }
- }
- public string ErrorMessage
- {
- get
- {
- return _ErrorMessage;
- }
- set
- {
- _ErrorMessage = value;
- }
- }
- public Version NewVersion
- {
- get
- {
- return _NewVersion;
- }
- set
- {
- _NewVersion = value;
- }
- }
- }
- }
|