SettingRetrieval<T> Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SettingRetrieval<T>(SettingRetrieval<T>) | |
SettingRetrieval<T>(SettingRetrievalOutcome, String, T) |
The result of a call to one of ISettingsReader's Get* methods. |
SettingRetrieval<T>(SettingRetrieval<T>)
protected SettingRetrieval (Microsoft.VisualStudio.Utilities.UnifiedSettings.SettingRetrieval<T> original);
Protected Sub New (original As SettingRetrieval(Of T))
Parameters
- original
- SettingRetrieval<T>
Applies to
SettingRetrieval<T>(SettingRetrievalOutcome, String, T)
The result of a call to one of ISettingsReader's Get* methods.
public SettingRetrieval (Microsoft.VisualStudio.Utilities.UnifiedSettings.SettingRetrievalOutcome Outcome, string? Message, T? Value);
new Microsoft.VisualStudio.Utilities.UnifiedSettings.SettingRetrieval<'T> : Microsoft.VisualStudio.Utilities.UnifiedSettings.SettingRetrievalOutcome * string * 'T -> Microsoft.VisualStudio.Utilities.UnifiedSettings.SettingRetrieval<'T>
Public Sub New (Outcome As SettingRetrievalOutcome, Message As String, Value As T)
Parameters
- Outcome
- SettingRetrievalOutcome
Success/failure type.
- Message
- String
An optional message with more details in case of failure. Useful for debugging or logging.
- Value
- T
The setting value, or null if retrieval failed.