Freigeben über


DkmLanguage.GetLanguageSettings Method

Definition

Overloads

GetLanguageSettings(DkmLanguageRegistrySetting[])

Reads language-specific from the registry. The settings are stored under HKLM\Software\Microsoft\VisualStudio\15.0\AD7Metrics\ExpressionEvaluator[Languag Guid][Vendor Guid].

GetLanguageSettings(DkmWorkList, DkmCompletionRoutine<DkmGetLanguageSettingsAsyncResult>)

Reads language-specific from the registry. The settings are stored under HKLM\Software\Microsoft\VisualStudio\15.0\AD7Metrics\ExpressionEvaluator[Languag Guid][Vendor Guid].

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

GetLanguageSettings(DkmLanguageRegistrySetting[])

Reads language-specific from the registry. The settings are stored under HKLM\Software\Microsoft\VisualStudio\15.0\AD7Metrics\ExpressionEvaluator[Languag Guid][Vendor Guid].

public:
 void GetLanguageSettings([Runtime::InteropServices::Out] cli::array <Microsoft::VisualStudio::Debugger::DkmLanguageRegistrySetting ^> ^ % Settings);
public void GetLanguageSettings (out Microsoft.VisualStudio.Debugger.DkmLanguageRegistrySetting[] Settings);
member this.GetLanguageSettings : DkmLanguageRegistrySetting[] -> unit
Public Sub GetLanguageSettings (ByRef Settings As DkmLanguageRegistrySetting())

Parameters

Settings
DkmLanguageRegistrySetting[]

[Out] Pairing between the name of a setting and its value.

Applies to

GetLanguageSettings(DkmWorkList, DkmCompletionRoutine<DkmGetLanguageSettingsAsyncResult>)

Reads language-specific from the registry. The settings are stored under HKLM\Software\Microsoft\VisualStudio\15.0\AD7Metrics\ExpressionEvaluator[Languag Guid][Vendor Guid].

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

public:
 void GetLanguageSettings(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::Evaluation::DkmGetLanguageSettingsAsyncResult> ^ CompletionRoutine);
public void GetLanguageSettings (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Evaluation.DkmGetLanguageSettingsAsyncResult> CompletionRoutine);
member this.GetLanguageSettings : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Evaluation.DkmGetLanguageSettingsAsyncResult> -> unit
Public Sub GetLanguageSettings (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmGetLanguageSettingsAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

CompletionRoutine
DkmCompletionRoutine<DkmGetLanguageSettingsAsyncResult>

Routine to fire when the request is complete. If the request is successfully appended to the work list, this will always fire (including when the operation is canceled). This will never fire if appending the work item fails.

Applies to