Class SettingSelector
SettingSelector is a set of options that allows selecting a filtered set of ConfigurationSetting entities from the configuration store, and optionally allows indicating which fields of each setting to retrieve.
Literals or filters may be specified for keys and labels.
For more information, Filtering.
Inheritance
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Data.AppConfiguration.dll
Syntax
public class SettingSelector
Constructors
SettingSelector()
Creates a default SettingSelector that will retrieve all ConfigurationSetting entities in the configuration store.
Declaration
public SettingSelector ();
Fields
Any
A wildcard that matches any key or any label when passed as a filter to Keys or Labels.
Declaration
public static readonly string Any;
Field Value
System.String
|
Properties
AcceptDateTime
Indicates the point in time in the revision history of the selected ConfigurationSetting entities to retrieve. If set, all properties of the ConfigurationSetting entities in the returned group will be exactly what they were at this time.
Declaration
public Nullable<DateTimeOffset> AcceptDateTime { get; set; }
Property Value
System.Nullable<System.DateTimeOffset>
|
Fields
The fields of the ConfigurationSetting to retrieve for each setting in the retrieved group.
Declaration
public Azure.Data.AppConfiguration.SettingFields Fields { get; set; }
Property Value
SettingFields
|
KeyFilter
Key filter that will be used to select a set of ConfigurationSetting entities.
Declaration
public string KeyFilter { get; set; }
Property Value
System.String
|
Remarks
See the documentation for this client library for details on the format of filter expressions.
LabelFilter
Label filter that will be used to select a set of ConfigurationSetting entities.
Declaration
public string LabelFilter { get; set; }
Property Value
System.String
|
Remarks
See the documentation for this client library for details on the format of filter expressions.
Methods
Equals(Object)
Check if two SettingSelector instances are equal.
Declaration
[System.ComponentModel.EditorBrowsable]
public override bool Equals (object obj);
Parameters
System.Object
obj
The instance to compare to. |
Returns
System.Boolean
|
GetHashCode()
Get a hash code for the SettingSelector.
Declaration
[System.ComponentModel.EditorBrowsable]
public override int GetHashCode ();
Returns
System.Int32
|
ToString()
Creates a string in reference to the SettingSelector.
Declaration
[System.ComponentModel.EditorBrowsable]
public override string ToString ();
Returns
System.String
|