AzureAppConfigurationOptions.Select(String, String) Method
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.
Specify what key-values to include in the configuration provider. Select(String, String) can be called multiple times to include multiple sets of key-values.
public Microsoft.Extensions.Configuration.AzureAppConfiguration.AzureAppConfigurationOptions Select (string keyFilter, string labelFilter = "\0");
member this.Select : string * string -> Microsoft.Extensions.Configuration.AzureAppConfiguration.AzureAppConfigurationOptions
Public Function Select (keyFilter As String, Optional labelFilter As String = "\0") As AzureAppConfigurationOptions
Parameters
- keyFilter
- System.String
The key filter to apply when querying Azure App Configuration for key-values. The characters asterisk (*), comma (,) and backslash () are reserved and must be escaped using a backslash (). Built-in key filter options: KeyFilter.
- labelFilter
- System.String
The label filter to apply when querying Azure App Configuration for key-values. By default the null label will be used. Built-in label filter options: LabelFilter The characters asterisk (*) and comma (,) are not supported. Backslash () character is reserved and must be escaped using another backslash ().