DkmCompileDisplayAttributeInternalAsyncResult Constructor

Definition

Creates a new result structure to hold the output from a successful call to DkmLanguageExpression.CompileDisplayAttributeInternal.

public:
 DkmCompileDisplayAttributeInternalAsyncResult(System::String ^ Error, Microsoft::VisualStudio::Debugger::Evaluation::ClrCompilation::DkmCompiledClrInspectionQuery ^ Result);
public:
 DkmCompileDisplayAttributeInternalAsyncResult(Platform::String ^ Error, Microsoft::VisualStudio::Debugger::Evaluation::ClrCompilation::DkmCompiledClrInspectionQuery ^ Result);
 DkmCompileDisplayAttributeInternalAsyncResult(std::wstring const & Error, Microsoft::VisualStudio::Debugger::Evaluation::ClrCompilation::DkmCompiledClrInspectionQuery const & Result);
public DkmCompileDisplayAttributeInternalAsyncResult (string Error, Microsoft.VisualStudio.Debugger.Evaluation.ClrCompilation.DkmCompiledClrInspectionQuery Result);
public DkmCompileDisplayAttributeInternalAsyncResult (string? Error, Microsoft.VisualStudio.Debugger.Evaluation.ClrCompilation.DkmCompiledClrInspectionQuery? Result);
new Microsoft.VisualStudio.Debugger.Evaluation.DkmCompileDisplayAttributeInternalAsyncResult : string * Microsoft.VisualStudio.Debugger.Evaluation.ClrCompilation.DkmCompiledClrInspectionQuery -> Microsoft.VisualStudio.Debugger.Evaluation.DkmCompileDisplayAttributeInternalAsyncResult
Public Sub New (Error As String, Result As DkmCompiledClrInspectionQuery)

Parameters

Error
String

[In,Optional] Indicates any error compiling the expression. If the code compiles successfully, this value should be null. In error cases, this value indicates the reason for the compile error and the caller should return S_OK.

Result
DkmCompiledClrInspectionQuery

[In,Optional] The compiled display attribute. If Result is null, and Error is not null, there was a compile error.

Applies to