Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / System / Configuration / ConfigXmlSignificantWhitespace.cs / 1305376 / ConfigXmlSignificantWhitespace.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System.Configuration.Internal; using System.IO; using System.Xml; using System.Security.Permissions; internal sealed class ConfigXmlSignificantWhitespace : XmlSignificantWhitespace, IConfigErrorInfo { public ConfigXmlSignificantWhitespace(string filename, int line, string strData, XmlDocument doc) : base(strData, doc) { _line = line; _filename = filename; } int _line; string _filename; int IConfigErrorInfo.LineNumber { get { return _line; } } string IConfigErrorInfo.Filename { get { return _filename; } } public override XmlNode CloneNode(bool deep) { XmlNode cloneNode = base.CloneNode(deep); ConfigXmlSignificantWhitespace clone = cloneNode as ConfigXmlSignificantWhitespace; if (clone != null) { clone._line = _line; clone._filename = _filename; } return cloneNode; } } } // 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
- Package.cs
- X509CertificateClaimSet.cs
- HwndSourceKeyboardInputSite.cs
- SchemaTableColumn.cs
- ValueChangedEventManager.cs
- TypeGeneratedEventArgs.cs
- SettingsPropertyValueCollection.cs
- HostVisual.cs
- ComplexTypeEmitter.cs
- SqlServer2KCompatibilityCheck.cs
- DefaultClaimSet.cs
- filewebresponse.cs
- DesignerCategoryAttribute.cs
- CheckBox.cs
- WeakReferenceEnumerator.cs
- Matrix3D.cs
- sqlstateclientmanager.cs
- MinimizableAttributeTypeConverter.cs
- CodeGeneratorOptions.cs
- VersionedStream.cs
- ButtonRenderer.cs
- Int32Animation.cs
- future.cs
- RepeatBehaviorConverter.cs
- TypedDataSetSchemaImporterExtension.cs
- ContextStack.cs
- Descriptor.cs
- MostlySingletonList.cs
- ResourcesChangeInfo.cs
- XmlSchemaParticle.cs
- SingleAnimation.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- ConfigurationManagerHelper.cs
- CustomWebEventKey.cs
- SqlDataReaderSmi.cs
- HyperLinkField.cs
- PathTooLongException.cs
- ScalarOps.cs
- InputMethodStateChangeEventArgs.cs
- DataColumnMappingCollection.cs
- MembershipSection.cs
- DependencyPropertyChangedEventArgs.cs
- ConversionContext.cs
- TransformDescriptor.cs
- WebPartEditorApplyVerb.cs
- Pair.cs
- DataGridPageChangedEventArgs.cs
- SrgsSubset.cs
- DocumentAutomationPeer.cs
- BindingManagerDataErrorEventArgs.cs
- DataRelationCollection.cs
- login.cs
- CurrentChangingEventArgs.cs
- DbParameterHelper.cs
- ComAdminInterfaces.cs
- GlyphRun.cs
- TableLayoutPanelCellPosition.cs
- Mapping.cs
- XamlTemplateSerializer.cs
- RegexNode.cs
- TileBrush.cs
- StandardToolWindows.cs
- SelectedDatesCollection.cs
- PropVariant.cs
- ZipIOCentralDirectoryBlock.cs
- MapPathBasedVirtualPathProvider.cs
- ColorConverter.cs
- SystemNetworkInterface.cs
- MeasurementDCInfo.cs
- figurelengthconverter.cs
- HeaderCollection.cs
- ChtmlLinkAdapter.cs
- SqlProfileProvider.cs
- X509Certificate.cs
- SocketPermission.cs
- GridViewRowCollection.cs
- FontStretches.cs
- NumberSubstitution.cs
- XmlSchemaComplexContentRestriction.cs
- CodeBinaryOperatorExpression.cs
- UICuesEvent.cs
- CodeDomDesignerLoader.cs
- TimeEnumHelper.cs
- ConfigXmlCDataSection.cs
- Dispatcher.cs
- MonikerProxyAttribute.cs
- Int16KeyFrameCollection.cs
- RelationalExpressions.cs
- ProtocolsSection.cs
- DocumentViewerHelper.cs
- TypeDependencyAttribute.cs
- MediaSystem.cs
- PropertyInfoSet.cs
- ExtractorMetadata.cs
- RoutedUICommand.cs
- FileLogRecordEnumerator.cs
- ProtocolProfile.cs
- ResourcePart.cs
- InternalUserCancelledException.cs
- RadioButton.cs