Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / System / Configuration / PropertySourceInfo.cs / 1305376 / 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
- DynamicActivity.cs
- PixelFormats.cs
- SelectionRangeConverter.cs
- TimelineGroup.cs
- LineUtil.cs
- _NativeSSPI.cs
- PermissionRequestEvidence.cs
- ErrorEventArgs.cs
- XPathQilFactory.cs
- BoundingRectTracker.cs
- ItemContainerGenerator.cs
- TableLayoutStyle.cs
- HttpCapabilitiesEvaluator.cs
- DecimalKeyFrameCollection.cs
- ConnectionConsumerAttribute.cs
- TextServicesCompartment.cs
- LongSumAggregationOperator.cs
- ShaderEffect.cs
- PriorityChain.cs
- Context.cs
- PermissionToken.cs
- ExpandSegmentCollection.cs
- DynamicILGenerator.cs
- XmlElement.cs
- HandleCollector.cs
- UITypeEditor.cs
- TreeBuilder.cs
- BinaryConverter.cs
- IteratorFilter.cs
- ProviderException.cs
- FieldAccessException.cs
- CreateRefExpr.cs
- AmbientProperties.cs
- KnowledgeBase.cs
- InfoCardRSAOAEPKeyExchangeFormatter.cs
- ListViewGroup.cs
- TransactionFlowOption.cs
- XPathNavigatorKeyComparer.cs
- PartManifestEntry.cs
- RuntimeVariablesExpression.cs
- GlobalEventManager.cs
- HandledMouseEvent.cs
- DataGridTextBox.cs
- EdmSchemaError.cs
- DockPattern.cs
- GeneralTransform3D.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- ContainerAction.cs
- DefaultBinder.cs
- X509Chain.cs
- ProxyGenerationError.cs
- ClosureBinding.cs
- LinkedList.cs
- updateconfighost.cs
- DataBindingCollectionEditor.cs
- HMAC.cs
- sqlstateclientmanager.cs
- TreeNodeBindingCollection.cs
- HostedHttpTransportManager.cs
- ComponentResourceManager.cs
- FrameworkContentElementAutomationPeer.cs
- ReflectPropertyDescriptor.cs
- Suspend.cs
- ManagedIStream.cs
- EdmToObjectNamespaceMap.cs
- ScrollViewerAutomationPeer.cs
- XdrBuilder.cs
- LinqToSqlWrapper.cs
- ShapingWorkspace.cs
- MessageTransmitTraceRecord.cs
- ProxyGenerationError.cs
- CardSpaceSelector.cs
- PublishLicense.cs
- RepeatEnumerable.cs
- counter.cs
- PassportAuthenticationEventArgs.cs
- ButtonColumn.cs
- MailDefinition.cs
- oledbconnectionstring.cs
- InstanceDescriptor.cs
- EntityContainerEntitySetDefiningQuery.cs
- ObfuscateAssemblyAttribute.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- ReliableChannelFactory.cs
- StringExpressionSet.cs
- XmlAttribute.cs
- CustomBindingElement.cs
- XmlBinaryWriterSession.cs
- DataGridViewCellEventArgs.cs
- XmlCharCheckingReader.cs
- NamespaceEmitter.cs
- LinqDataView.cs
- UrlMappingsSection.cs
- ClientType.cs
- PropertyChangeTracker.cs
- ResumeStoryboard.cs
- handlecollector.cs
- Soap.cs
- ObjectDataSourceStatusEventArgs.cs
- SchemaTypeEmitter.cs