Show / Hide Table of Contents

Class BotActionFailedEventArgs

The event where an action fails to run.

Inheritance
object
EventArgs
BotActionEventArgs
BotActionFailedEventArgs
Inherited Members
BotActionEventArgs.Action
EventArgs.Empty
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Microsoft.XboxStudios.BotBrain
Assembly: BotBrain.Abstractions.dll
Syntax
public class BotActionFailedEventArgs : BotActionEventArgs
Remarks

Initializes a new instance of the BotActionFailedEventArgs class.

Constructors

View Source

BotActionFailedEventArgs(object, Exception)

The event where an action fails to run.

Declaration
public BotActionFailedEventArgs(object action, Exception exception)
Parameters
Type Name Description
object action

The action that failed.

Exception exception

the exception that occurred.

Remarks

Initializes a new instance of the BotActionFailedEventArgs class.

Properties

View Source

Exception

Gets the exception that occurred.

Declaration
public Exception Exception { get; }
Property Value
Type Description
Exception
  • View Source
In this article
Back to top Generated by DocFX