DkmExceptionConditionInfo.Create Method

Definition

Create a new DkmExceptionConditionInfo object instance.

This API was introduced in Visual Studio 15 RTM (DkmApiVersion.VS15RTM).

public:
 static Microsoft::VisualStudio::Debugger::Exceptions::DkmExceptionConditionInfo ^ Create(Microsoft::VisualStudio::Debugger::ExceptionConditionType Type, Microsoft::VisualStudio::Debugger::ExceptionConditionCallStackBehavior CallStackBehavior, Microsoft::VisualStudio::Debugger::ExceptionConditionOperator Operator, System::String ^ Value);
public:
 static Microsoft::VisualStudio::Debugger::Exceptions::DkmExceptionConditionInfo ^ Create(Microsoft::VisualStudio::Debugger::ExceptionConditionType Type, Microsoft::VisualStudio::Debugger::ExceptionConditionCallStackBehavior CallStackBehavior, Microsoft::VisualStudio::Debugger::ExceptionConditionOperator Operator, Platform::String ^ Value);
 static Microsoft::VisualStudio::Debugger::Exceptions::DkmExceptionConditionInfo Create(Microsoft::VisualStudio::Debugger::ExceptionConditionType Type, Microsoft::VisualStudio::Debugger::ExceptionConditionCallStackBehavior CallStackBehavior, Microsoft::VisualStudio::Debugger::ExceptionConditionOperator Operator, std::wstring const & Value);
public static Microsoft.VisualStudio.Debugger.Exceptions.DkmExceptionConditionInfo Create (Microsoft.VisualStudio.Debugger.ExceptionConditionType Type, Microsoft.VisualStudio.Debugger.ExceptionConditionCallStackBehavior CallStackBehavior, Microsoft.VisualStudio.Debugger.ExceptionConditionOperator Operator, string Value);
static member Create : Microsoft.VisualStudio.Debugger.ExceptionConditionType * Microsoft.VisualStudio.Debugger.ExceptionConditionCallStackBehavior * Microsoft.VisualStudio.Debugger.ExceptionConditionOperator * string -> Microsoft.VisualStudio.Debugger.Exceptions.DkmExceptionConditionInfo
Public Shared Function Create (Type As ExceptionConditionType, CallStackBehavior As ExceptionConditionCallStackBehavior, Operator As ExceptionConditionOperator, Value As String) As DkmExceptionConditionInfo

Parameters

Type
ExceptionConditionType

[In] Defines what to compare the Value property against.

CallStackBehavior
ExceptionConditionCallStackBehavior

[In] Defines what part of the call stack of the exception should be scanned.

Operator
ExceptionConditionOperator

[In] Determines type of comparison operator to use between the exception and the value.

Value
String

[In] String comparison value to match against.

Returns

[Out] Result of this method call.

Applies to