Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Configuration / System / Configuration / PropertySourceInfo.cs / 1 / PropertySourceInfo.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Configuration.Internal; using System.Collections; using System.Collections.Specialized; using System.Collections.Generic; using System.IO; using System.Reflection; using System.Security.Permissions; using System.Xml; using System.Globalization; using System.ComponentModel; using System.Security; using System.Text; namespace System.Configuration { internal class PropertySourceInfo { private string _fileName; private int _lineNumber; internal PropertySourceInfo(XmlReader reader) { _fileName = GetFilename(reader); _lineNumber = GetLineNumber(reader); } internal string FileName { get { // // Ensure we return the same string to the caller as the one on which we issued the demand. // string filename = _fileName; try { new FileIOPermission(FileIOPermissionAccess.PathDiscovery, filename).Demand(); } catch (SecurityException) { // don't expose the path to this user but show the filename filename = Path.GetFileName(_fileName); if (filename == null) { filename = String.Empty; } } return filename; } } internal int LineNumber { get { return _lineNumber; } } private string GetFilename(XmlReader reader) { IConfigErrorInfo err = reader as IConfigErrorInfo; if (err != null) { return (string)err.Filename; } return ""; } private int GetLineNumber(XmlReader reader) { IConfigErrorInfo err = reader as IConfigErrorInfo; if (err != null) { return (int)err.LineNumber; } return 0; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Configuration.Internal; using System.Collections; using System.Collections.Specialized; using System.Collections.Generic; using System.IO; using System.Reflection; using System.Security.Permissions; using System.Xml; using System.Globalization; using System.ComponentModel; using System.Security; using System.Text; namespace System.Configuration { internal class PropertySourceInfo { private string _fileName; private int _lineNumber; internal PropertySourceInfo(XmlReader reader) { _fileName = GetFilename(reader); _lineNumber = GetLineNumber(reader); } internal string FileName { get { // // Ensure we return the same string to the caller as the one on which we issued the demand. // string filename = _fileName; try { new FileIOPermission(FileIOPermissionAccess.PathDiscovery, filename).Demand(); } catch (SecurityException) { // don't expose the path to this user but show the filename filename = Path.GetFileName(_fileName); if (filename == null) { filename = String.Empty; } } return filename; } } internal int LineNumber { get { return _lineNumber; } } private string GetFilename(XmlReader reader) { IConfigErrorInfo err = reader as IConfigErrorInfo; if (err != null) { return (string)err.Filename; } return ""; } private int GetLineNumber(XmlReader reader) { IConfigErrorInfo err = reader as IConfigErrorInfo; if (err != null) { return (int)err.LineNumber; } return 0; } } } // 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
- SafeNativeMethods.cs
- InputProcessorProfilesLoader.cs
- SecurityUtils.cs
- Stack.cs
- ViewStateModeByIdAttribute.cs
- GeneralTransform2DTo3DTo2D.cs
- AssemblyCache.cs
- XmlSchemaValidator.cs
- IsolationInterop.cs
- ValueUnavailableException.cs
- DefaultTraceListener.cs
- DivideByZeroException.cs
- ToolStripContainer.cs
- XPathNavigatorKeyComparer.cs
- ClientSideProviderDescription.cs
- SafeHandles.cs
- XmlNodeList.cs
- FactoryMaker.cs
- ButtonRenderer.cs
- DynamicRendererThreadManager.cs
- ContextStaticAttribute.cs
- HitTestParameters3D.cs
- CustomAttributeSerializer.cs
- StrokeCollection.cs
- TextAdaptor.cs
- MaterializeFromAtom.cs
- ComponentTray.cs
- DbDataReader.cs
- ResourceManager.cs
- MethodMessage.cs
- DelayedRegex.cs
- Serializer.cs
- VariableDesigner.xaml.cs
- RootProfilePropertySettingsCollection.cs
- ContentType.cs
- ObjectDataSourceChooseTypePanel.cs
- AgileSafeNativeMemoryHandle.cs
- XmlNamespaceManager.cs
- Mappings.cs
- XamlStyleSerializer.cs
- DesignTimeParseData.cs
- WizardPanelChangingEventArgs.cs
- OdbcStatementHandle.cs
- PasswordRecovery.cs
- EndpointConfigContainer.cs
- PixelShader.cs
- OleDbParameter.cs
- DataErrorValidationRule.cs
- Stopwatch.cs
- CompilerGeneratedAttribute.cs
- RichTextBoxAutomationPeer.cs
- ProgressBarHighlightConverter.cs
- ILGenerator.cs
- MissingManifestResourceException.cs
- X509SecurityToken.cs
- ItemMap.cs
- CompositeScriptReference.cs
- EntityModelBuildProvider.cs
- ProfileManager.cs
- StyleXamlParser.cs
- ConsoleCancelEventArgs.cs
- BaseResourcesBuildProvider.cs
- AsymmetricCryptoHandle.cs
- DefaultSection.cs
- InputMethodStateChangeEventArgs.cs
- ProgressiveCrcCalculatingStream.cs
- ConfigXmlSignificantWhitespace.cs
- DoubleAnimationUsingKeyFrames.cs
- TdsEnums.cs
- ZeroOpNode.cs
- AppDomainProtocolHandler.cs
- WizardStepBase.cs
- UserControlBuildProvider.cs
- Suspend.cs
- StylusSystemGestureEventArgs.cs
- DataFormat.cs
- ViewValidator.cs
- ProcessHostMapPath.cs
- XmlEventCache.cs
- XmlDataDocument.cs
- SchemaType.cs
- ProfessionalColorTable.cs
- _AutoWebProxyScriptEngine.cs
- VirtualPath.cs
- TTSEngineTypes.cs
- Rect.cs
- XmlWrappingReader.cs
- FontDifferentiator.cs
- QueryableDataSourceHelper.cs
- DbParameterCollection.cs
- ContentFileHelper.cs
- MemberExpressionHelper.cs
- DataKey.cs
- TextLine.cs
- ColumnMapCopier.cs
- EntityDescriptor.cs
- SignatureToken.cs
- TaiwanCalendar.cs
- SplitterEvent.cs
- MenuItemStyle.cs