internal SessionEndingCancelEventArgs (ReasonSessionEnding reasonSessionEnding)
		{
			this.reasonSessionEnding = reasonSessionEnding;
		}
Пример #2
0
 // Token: 0x060008B9 RID: 2233 RVA: 0x0001C3B6 File Offset: 0x0001A5B6
 internal SessionEndingCancelEventArgs(ReasonSessionEnding reasonSessionEnding)
 {
     this._reasonSessionEnding = reasonSessionEnding;
 }
Пример #3
0
 public OsSessionEndingEvent(ReasonSessionEnding sessionEndingReason)
 {
     this.SessionEndingReason = sessionEndingReason;
 }
Пример #4
0
 /// <summary>Completes App Session due to Logoff or Shutdown.</summary>
 /// <returns>Returns task that represents completion of App services.</returns>
 // ???: result is ignored and will be replaced with simple Task
 public Task <bool> Complete(ReasonSessionEnding reason)
 {
     _logger.Warn($"App completion requested due to (logoff|shutdown): [{reason}]");
     // Completion with TPLDataflow - https://stackoverflow.com/a/21491180
     throw new NotImplementedException();
 }