Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / System / Configuration / InvalidPropValue.cs / 1305376 / InvalidPropValue.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 { // Class to support caching of property values as string internal sealed class InvalidPropValue { private string _value; private ConfigurationException _error; internal InvalidPropValue(string value, ConfigurationException error) { _value = value; _error = error; } internal ConfigurationException Error { get { return _error; } } internal string Value { get { return _value; } } } } // 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
- WindowManager.cs
- ContentElement.cs
- InstanceData.cs
- LogAppendAsyncResult.cs
- BindStream.cs
- RuleSetDialog.cs
- LinqDataSourceHelper.cs
- ObjectTag.cs
- DataGridViewLayoutData.cs
- CellTreeNode.cs
- ConnectionManager.cs
- IOException.cs
- BinaryReader.cs
- DataGridViewLinkCell.cs
- XmlValueConverter.cs
- updateconfighost.cs
- HtmlInputCheckBox.cs
- OuterProxyWrapper.cs
- DetailsViewDeletedEventArgs.cs
- ProxyWebPartConnectionCollection.cs
- GridViewColumnHeader.cs
- GlyphTypeface.cs
- ConfigXmlText.cs
- SamlAuthorizationDecisionStatement.cs
- AnimationStorage.cs
- EdmScalarPropertyAttribute.cs
- PrivacyNoticeBindingElementImporter.cs
- ErrorWebPart.cs
- RectangleGeometry.cs
- ListItem.cs
- AVElementHelper.cs
- XmlLanguage.cs
- XPathSingletonIterator.cs
- OutputCacheSection.cs
- ConfigXmlWhitespace.cs
- PropertyDescriptor.cs
- ModifierKeysValueSerializer.cs
- XmlRawWriter.cs
- MultiView.cs
- HtmlAnchor.cs
- LinkLabelLinkClickedEvent.cs
- ClientApiGenerator.cs
- TraceSection.cs
- ExpandableObjectConverter.cs
- MethodImplAttribute.cs
- ParallelDesigner.cs
- PixelFormats.cs
- TypeDescriptorFilterService.cs
- XmlIgnoreAttribute.cs
- XPathAncestorIterator.cs
- DataGridViewComboBoxCell.cs
- DataSourceSelectArguments.cs
- PointIndependentAnimationStorage.cs
- NativeCppClassAttribute.cs
- AttributeCollection.cs
- SecurityDescriptor.cs
- ReadOnlyCollection.cs
- _HelperAsyncResults.cs
- WorkflowWebHostingModule.cs
- LogEntrySerialization.cs
- TransactionManager.cs
- StateFinalizationDesigner.cs
- SystemMulticastIPAddressInformation.cs
- SqlConnectionHelper.cs
- AttributeAction.cs
- AvTraceFormat.cs
- ProcessHostMapPath.cs
- SafeMILHandle.cs
- PointUtil.cs
- BindValidator.cs
- AssemblyAttributesGoHere.cs
- Binding.cs
- SecurityPermission.cs
- DataSourceProvider.cs
- RewritingPass.cs
- XmlSchemaAll.cs
- configsystem.cs
- MulticastNotSupportedException.cs
- PublisherIdentityPermission.cs
- ThreadAbortException.cs
- GridEntryCollection.cs
- TrackingRecord.cs
- DictionaryBase.cs
- Geometry.cs
- CalendarAutomationPeer.cs
- TypeInitializationException.cs
- SeekableReadStream.cs
- DependencyObjectProvider.cs
- BuilderElements.cs
- QilName.cs
- ServiceInfo.cs
- ToolStripTextBox.cs
- TextEditorParagraphs.cs
- WindowsFont.cs
- SqlClientFactory.cs
- ItemContainerGenerator.cs
- TogglePatternIdentifiers.cs
- LingerOption.cs
- InvalidPropValue.cs
- ResXDataNode.cs