Exemplo n.º 1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="ShutdownCompletedEventArgs"/> class.
        /// </summary>
        /// <param name="source">A <see cref="ShutdownSource"/> value which indicates shutdown source.</param>
        /// <exception cref="ArgumentOutOfRangeException">
        ///		The <paramref name="source"/> is not valid <see cref="ShutdownSource"/> enumeration value.
        /// </exception>
        public ShutdownCompletedEventArgs(ShutdownSource source)
        {
            switch (source)
            {
            case ShutdownSource.Client:
            case ShutdownSource.Server:
            case ShutdownSource.Unknown:
            case ShutdownSource.Disposing: {
                break;
            }

            default: {
                throw new ArgumentOutOfRangeException(nameof(source));
            }
            }

            Contract.EndContractBlock();

            Source = source;
        }
Exemplo n.º 2
0
		/// <summary>
		/// Initializes a new instance of the <see cref="ShutdownCompletedEventArgs"/> class.
		/// </summary>
		/// <param name="source">A <see cref="ShutdownSource"/> value which indicates shutdown source.</param>
		/// <exception cref="ArgumentOutOfRangeException">
		///		The <paramref name="source"/> is not valid <see cref="ShutdownSource"/> enumeration value.
		/// </exception>
		public ShutdownCompletedEventArgs( ShutdownSource source )
		{
			switch ( source )
			{
				case ShutdownSource.Client:
				case ShutdownSource.Server:
				case ShutdownSource.Unknown:
				case ShutdownSource.Disposing:
				{
					break;
				}
				default:
				{
					throw new ArgumentOutOfRangeException( "source" );
				}
			}

			Contract.EndContractBlock();

			this._source = source;
		}