Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / Configuration / AppSettingsReader.cs / 1 / AppSettingsReader.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Reflection; using System.Configuration; using System.Collections.Specialized; using System.Globalization; namespace System.Configuration { ////// The AppSettingsReader class provides a wrapper for System.Configuration.ConfigurationManager.AppSettings /// which provides a single method for reading values from the config file of a particular type. /// public class AppSettingsReader { private NameValueCollection map; static Type stringType = typeof(string); static Type[] paramsArray = new Type[] { stringType }; static string NullString = "None"; ////// Constructor /// public AppSettingsReader() { map = System.Configuration.ConfigurationManager.AppSettings; } ////// Gets the value for specified key from ConfigurationManager.AppSettings, and returns /// an object of the specified type containing the value from the config file. If the key /// isn't in the config file, or if it is not a valid value for the given type, it will /// throw an exception with a descriptive message so the user can make the appropriate /// change /// public object GetValue(string key, Type type) { if (key == null) throw new ArgumentNullException("key"); if (type == null) throw new ArgumentNullException("type"); string val = map[key]; if (val == null) throw new InvalidOperationException(SR.GetString(SR.AppSettingsReaderNoKey, key)); if (type == stringType) { // It's a string, so we can ALMOST just return the value. The only // tricky point is that if it's the string "(None)", then we want to // return null. And of course we need a way to represent the string // (None), so we use ((None)), and so on... so it's a little complicated. int NoneNesting = GetNoneNesting(val); if (NoneNesting == 0) { // val is not of the form ((..((None))..)) return val; } else if (NoneNesting == 1) { // val is (None) return null; } else { // val is of the form ((..((None))..)) return val.Substring(1, val.Length - 2); } } else { try { return Convert.ChangeType(val, type, CultureInfo.InvariantCulture); } catch (Exception) { string displayString = (val.Length == 0) ? SR.AppSettingsReaderEmptyString : val; throw new InvalidOperationException(SR.GetString(SR.AppSettingsReaderCantParse, displayString, key, type.ToString())); } } } private int GetNoneNesting(string val) { int count = 0; int len = val.Length; if (len > 1) { while (val[count] == '(' && val[len - count - 1] == ')') { count++; } if (count > 0 && string.Compare(NullString, 0, val, count, len - 2 * count, StringComparison.Ordinal) != 0) { // the stuff between the parens is not "None" count = 0; } } return count; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Reflection; using System.Configuration; using System.Collections.Specialized; using System.Globalization; namespace System.Configuration { ////// The AppSettingsReader class provides a wrapper for System.Configuration.ConfigurationManager.AppSettings /// which provides a single method for reading values from the config file of a particular type. /// public class AppSettingsReader { private NameValueCollection map; static Type stringType = typeof(string); static Type[] paramsArray = new Type[] { stringType }; static string NullString = "None"; ////// Constructor /// public AppSettingsReader() { map = System.Configuration.ConfigurationManager.AppSettings; } ////// Gets the value for specified key from ConfigurationManager.AppSettings, and returns /// an object of the specified type containing the value from the config file. If the key /// isn't in the config file, or if it is not a valid value for the given type, it will /// throw an exception with a descriptive message so the user can make the appropriate /// change /// public object GetValue(string key, Type type) { if (key == null) throw new ArgumentNullException("key"); if (type == null) throw new ArgumentNullException("type"); string val = map[key]; if (val == null) throw new InvalidOperationException(SR.GetString(SR.AppSettingsReaderNoKey, key)); if (type == stringType) { // It's a string, so we can ALMOST just return the value. The only // tricky point is that if it's the string "(None)", then we want to // return null. And of course we need a way to represent the string // (None), so we use ((None)), and so on... so it's a little complicated. int NoneNesting = GetNoneNesting(val); if (NoneNesting == 0) { // val is not of the form ((..((None))..)) return val; } else if (NoneNesting == 1) { // val is (None) return null; } else { // val is of the form ((..((None))..)) return val.Substring(1, val.Length - 2); } } else { try { return Convert.ChangeType(val, type, CultureInfo.InvariantCulture); } catch (Exception) { string displayString = (val.Length == 0) ? SR.AppSettingsReaderEmptyString : val; throw new InvalidOperationException(SR.GetString(SR.AppSettingsReaderCantParse, displayString, key, type.ToString())); } } } private int GetNoneNesting(string val) { int count = 0; int len = val.Length; if (len > 1) { while (val[count] == '(' && val[len - count - 1] == ')') { count++; } if (count > 0 && string.Compare(NullString, 0, val, count, len - 2 * count, StringComparison.Ordinal) != 0) { // the stuff between the parens is not "None" count = 0; } } return count; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PropertyTabAttribute.cs
- WebConfigurationHost.cs
- SendKeys.cs
- DefaultWorkflowLoaderService.cs
- XmlSchemaAny.cs
- ConnectorDragDropGlyph.cs
- SafeViewOfFileHandle.cs
- UICuesEvent.cs
- SqlConnection.cs
- ACL.cs
- NotImplementedException.cs
- CodeCompiler.cs
- PeerNameResolver.cs
- IChannel.cs
- Privilege.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- ProfilePropertySettingsCollection.cs
- SamlSecurityToken.cs
- TextEvent.cs
- PackageFilter.cs
- GridViewActionList.cs
- BooleanToVisibilityConverter.cs
- HwndStylusInputProvider.cs
- SerializerProvider.cs
- ButtonChrome.cs
- TableNameAttribute.cs
- CfgParser.cs
- StringUtil.cs
- StatusBarAutomationPeer.cs
- Span.cs
- XamlTreeBuilder.cs
- MatrixTransform.cs
- ErrorProvider.cs
- ShowExpandedMultiValueConverter.cs
- EntitySqlQueryState.cs
- ProjectionPruner.cs
- InputProviderSite.cs
- GlobalEventManager.cs
- IsolatedStorageSecurityState.cs
- RtfControls.cs
- BufferedWebEventProvider.cs
- hwndwrapper.cs
- parserscommon.cs
- DataStorage.cs
- CompilerGeneratedAttribute.cs
- ProxyAttribute.cs
- BitmapDownload.cs
- ToolStripSplitStackLayout.cs
- ResourceAttributes.cs
- FormViewActionList.cs
- SizeAnimation.cs
- ToolStripDropDownClosingEventArgs.cs
- OutputCacheSettings.cs
- ZipQueryOperator.cs
- ContainerTracking.cs
- TraceInternal.cs
- DataGridViewColumnHeaderCell.cs
- QueueAccessMode.cs
- Library.cs
- UserControl.cs
- HebrewNumber.cs
- CodeExpressionRuleDeclaration.cs
- XmlCollation.cs
- handlecollector.cs
- DescendantBaseQuery.cs
- SecurityTokenException.cs
- ExecutionContext.cs
- ReadOnlyPropertyMetadata.cs
- StorageAssociationTypeMapping.cs
- Symbol.cs
- OutputCacheSection.cs
- WaitHandleCannotBeOpenedException.cs
- RichTextBox.cs
- VersionPair.cs
- DataServiceQueryOfT.cs
- RecordManager.cs
- RelativeSource.cs
- CharConverter.cs
- Aggregates.cs
- XmlSchemaAppInfo.cs
- AmbientLight.cs
- DashStyle.cs
- XmlDocumentFragment.cs
- CodeEventReferenceExpression.cs
- LoginView.cs
- BaseConfigurationRecord.cs
- ScrollViewerAutomationPeer.cs
- XmlDictionaryReader.cs
- TemplatedAdorner.cs
- MediaContextNotificationWindow.cs
- DbParameterCollection.cs
- Rotation3D.cs
- SimplePropertyEntry.cs
- securestring.cs
- SplashScreenNativeMethods.cs
- _CacheStreams.cs
- ExpressionVisitorHelpers.cs
- KnownTypes.cs
- EntityDescriptor.cs
- FontStretches.cs