本文整理汇总了C#中ConfigurationSection.Get方法的典型用法代码示例。如果您正苦于以下问题:C# ConfigurationSection.Get方法的具体用法?C# ConfigurationSection.Get怎么用?C# ConfigurationSection.Get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ConfigurationSection
的用法示例。
在下文中一共展示了ConfigurationSection.Get方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CanReadAddedValue
public void CanReadAddedValue()
{
var section = new ConfigurationSection( SectionName );
section.Set( Key, Value );
var value = section.Get<string>( "key" );
Assert.Equal( Value, value );
}
示例2: CanGetAndSetEnumStringValues
public void CanGetAndSetEnumStringValues()
{
const OSEnum value = OSEnum.Win2k;
var section = new ConfigurationSection( SectionName );
section.Set( Key, value.ToString() );
var fromSection = section.Get<OSEnum>( Key );
Assert.AreEqual( value, fromSection );
}
示例3: CanGetAndSetEnumFlagValues
public void CanGetAndSetEnumFlagValues()
{
const OptionsEnum all = ( OptionsEnum.A | OptionsEnum.B | OptionsEnum.C );
var section = new ConfigurationSection( SectionName );
section.Set( Key, all );
var fromSection = section.Get<OptionsEnum>( Key );
Assert.AreEqual( all, fromSection );
}
示例4: SettingAValueForAnExistingKeyOverrides
public void SettingAValueForAnExistingKeyOverrides()
{
var section = new ConfigurationSection( SectionName );
section.Set( Key, Value );
Assert.AreEqual( Value, section.Get<string>( Key ) );
section.Set( Key, Key );
Assert.AreEqual( Key, section.Get<string>( Key ) );
}
示例5: GettingNonExistingItemReturnsDefaultForType
public void GettingNonExistingItemReturnsDefaultForType()
{
var section = new ConfigurationSection( SectionName );
var optionsEnum = section.Get<OptionsEnum>( Key );
Assert.AreEqual( default( OptionsEnum ), optionsEnum );
var osEnum = section.Get<OSEnum>( Key );
Assert.AreEqual( default( OSEnum ), osEnum );
var stringValue = section.Get<string>( Key );
Assert.AreEqual( default( string ), stringValue );
var boolValue = section.Get<bool>( Key );
Assert.AreEqual( default( bool ), boolValue );
var dummySection = section.Get<ConfigurationSection>( Key );
Assert.AreEqual( default( ConfigurationSection ), dummySection );
}
示例6: DefaultParameterValueIsReturnedForNonExistingKey
public void DefaultParameterValueIsReturnedForNonExistingKey()
{
var section = new ConfigurationSection( SectionName );
const OptionsEnum optionsEnumDefault = OptionsEnum.None;
OptionsEnum optionsEnum = section.Get( Key, optionsEnumDefault );
Assert.AreEqual( optionsEnumDefault, optionsEnum );
const OSEnum osEnumDefault = OSEnum.WinXp;
OSEnum osEnum = section.Get( Key, osEnumDefault );
Assert.AreEqual( osEnumDefault, osEnum );
const string stringDefault = Value;
string stringValue = section.Get( Key, stringDefault );
Assert.AreEqual( stringDefault, stringValue );
bool boolValue = section.Get( Key, true );
Assert.AreEqual( true, boolValue );
boolValue = section.Get( Key, false );
Assert.AreEqual( false, boolValue );
var defaultSection = new ConfigurationSection( "MyDefault" );
ConfigurationSection dummySection = section.Get( Key, defaultSection );
Assert.AreEqual( defaultSection, dummySection );
}
示例7: CanGetAndSetEnumInt32Values
public void CanGetAndSetEnumInt32Values()
{
const OSEnum value = OSEnum.Win2k;
var section = new ConfigurationSection( SectionName );
section.Set( Key, (int) value );
var fromSection = section.Get<OSEnum>( Key );
Assert.Equal( value, fromSection );
}