Onyxl's picture
Upload 2661 files
8c763fb verified
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace System.Management.Automation.Remoting.WSMan
{
/// <summary>
/// This class channels WSMan server specific notifications to subscribers.
/// One example is shutting down.
/// </summary>
public static class WSManServerChannelEvents
{
#region public members
/// <summary>
/// Event raised when shutting down WSMan server.
/// </summary>
public static event EventHandler ShuttingDown;
/// <summary>
/// Event raised when active sessions in an endpoint are changed.
/// </summary>
public static event EventHandler<ActiveSessionsChangedEventArgs> ActiveSessionsChanged;
#endregion public members
#region internal members
/// <summary>
/// Raising shutting down WSMan server event.
/// </summary>
internal static void RaiseShuttingDownEvent()
{
ShuttingDown?.Invoke(null, EventArgs.Empty);
}
/// <summary>
/// Raising ActiveSessionsChanged event.
/// </summary>
internal static void RaiseActiveSessionsChangedEvent(ActiveSessionsChangedEventArgs eventArgs)
{
ActiveSessionsChanged?.Invoke(null, eventArgs);
}
#endregion internal members
}
/// <summary>
/// Holds the event arguments when active sessions count changed.
/// </summary>
public sealed class ActiveSessionsChangedEventArgs : EventArgs
{
/// <summary>
/// Creates a new ActiveSessionsChangedEventArgs instance.
/// </summary>
/// <param name="activeSessionsCount"></param>
public ActiveSessionsChangedEventArgs(int activeSessionsCount)
{
ActiveSessionsCount = activeSessionsCount;
}
/// <summary>
/// ActiveSessionsCount.
/// </summary>
public int ActiveSessionsCount
{
get;
internal set;
}
}
}