IFeatureFlagsStore.GetBoolValue(String, String) Method

Definition

Retrieves a boolean value stored under the collectionPath with the dictated name. If the collectionPath or name doesn't exist, then null is returned.

public:
 Nullable<bool> GetBoolValue(System::String ^ collectionPath, System::String ^ name);
public bool? GetBoolValue(string collectionPath, string name);
abstract member GetBoolValue : string * string -> Nullable<bool>
Public Function GetBoolValue (collectionPath As String, name As String) As Nullable(Of Boolean)

Parameters

collectionPath
String

The full path, separated by back-slash characters to the collection/subcollection to be queried

name
String

The name of the value to read

Returns

True or False depending on the state of the value of the name under the collection Path, or null if the value doesn't exist

Applies to