No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- // Licensed to the .NET Foundation under one or more agreements.
- // The .NET Foundation licenses this file to you under the MIT license.
- // See the LICENSE file in the project root for more information.
-
- using System;
-
- namespace MQTTnet.Extensions.ManagedClient
- {
- public class ManagedProcessFailedEventArgs : EventArgs
- {
- public ManagedProcessFailedEventArgs(Exception exception)
- {
- Exception = exception ?? throw new ArgumentNullException(nameof(exception));
- }
-
- public Exception Exception { get; }
- }
- }
|