Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Data / System / Data / Common / NameValuePair.cs / 1 / NameValuePair.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- #if ORACLE namespace System.Data.OracleClient { #else namespace System.Data.Common { #endif using System; using System.Data.Common; using System.Diagnostics; using System.Runtime.Serialization; [Serializable] // MDAC 83147 sealed internal class NameValuePair { readonly private string _name; readonly private string _value; [OptionalField(VersionAdded=2)] readonly private int _length; private NameValuePair _next; internal NameValuePair(string name, string value, int length) { System.Diagnostics.Debug.Assert(!ADP.IsEmpty(name), "empty keyname"); _name = name; _value = value; _length = length; } internal int Length { get { // this property won't exist when deserialized from Everett to Whidbey // it shouldn't matter for DbConnectionString/DbDataPermission // which should only use Length during construction // not deserialization or post-ctor runtime Debug.Assert(0 < _length, "NameValuePair zero Length usage"); return _length; } } internal string Name { get { return _name; } } internal NameValuePair Next { get { return _next; } set { if ((null != _next) || (null == value)) { throw ADP.InternalError(ADP.InternalErrorCode.NameValuePairNext); } _next = value; } } internal string Value { get { return _value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- #if ORACLE namespace System.Data.OracleClient { #else namespace System.Data.Common { #endif using System; using System.Data.Common; using System.Diagnostics; using System.Runtime.Serialization; [Serializable] // MDAC 83147 sealed internal class NameValuePair { readonly private string _name; readonly private string _value; [OptionalField(VersionAdded=2)] readonly private int _length; private NameValuePair _next; internal NameValuePair(string name, string value, int length) { System.Diagnostics.Debug.Assert(!ADP.IsEmpty(name), "empty keyname"); _name = name; _value = value; _length = length; } internal int Length { get { // this property won't exist when deserialized from Everett to Whidbey // it shouldn't matter for DbConnectionString/DbDataPermission // which should only use Length during construction // not deserialization or post-ctor runtime Debug.Assert(0 < _length, "NameValuePair zero Length usage"); return _length; } } internal string Name { get { return _name; } } internal NameValuePair Next { get { return _next; } set { if ((null != _next) || (null == value)) { throw ADP.InternalError(ADP.InternalErrorCode.NameValuePairNext); } _next = value; } } 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
- CollaborationHelperFunctions.cs
- ServiceOperationInvoker.cs
- ObsoleteAttribute.cs
- XmlEnumAttribute.cs
- IPGlobalProperties.cs
- ToolStripSplitStackLayout.cs
- QilParameter.cs
- XmlSerializationWriter.cs
- UIElement3DAutomationPeer.cs
- InputScopeConverter.cs
- SQLStringStorage.cs
- BinaryMethodMessage.cs
- Win32Native.cs
- ResolveMatchesMessageCD1.cs
- _ProxyChain.cs
- Header.cs
- SelectionChangedEventArgs.cs
- ComboBoxItem.cs
- EraserBehavior.cs
- PipeStream.cs
- PatternMatchRules.cs
- COM2ComponentEditor.cs
- FixedFlowMap.cs
- SimpleType.cs
- Certificate.cs
- SelectorAutomationPeer.cs
- Quad.cs
- Int64AnimationUsingKeyFrames.cs
- HitTestResult.cs
- RepeaterItem.cs
- MonthChangedEventArgs.cs
- storepermission.cs
- BaseTemplateBuildProvider.cs
- BitmapCache.cs
- LocalizableResourceBuilder.cs
- WeakEventManager.cs
- SafeNativeMethods.cs
- TreeNodeCollection.cs
- TextRange.cs
- InternalCache.cs
- HotSpotCollection.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- SettingsSection.cs
- BamlTreeUpdater.cs
- DeferredReference.cs
- ObjectContextServiceProvider.cs
- SrgsSubset.cs
- FilterRepeater.cs
- Compiler.cs
- ObjectCloneHelper.cs
- latinshape.cs
- SnapLine.cs
- SqlVersion.cs
- LinqExpressionNormalizer.cs
- FontInfo.cs
- Icon.cs
- ChannelRequirements.cs
- XamlStream.cs
- PtsCache.cs
- TimeoutValidationAttribute.cs
- MimeTypeMapper.cs
- SRef.cs
- ProgressBar.cs
- Int32KeyFrameCollection.cs
- ToolStripItemDataObject.cs
- LayoutInformation.cs
- DeclarationUpdate.cs
- DbProviderConfigurationHandler.cs
- HtmlFormParameterWriter.cs
- AssociatedControlConverter.cs
- ControlBindingsConverter.cs
- SrgsOneOf.cs
- VerbConverter.cs
- ForwardPositionQuery.cs
- XPathNodeList.cs
- SqlFactory.cs
- ForceCopyBuildProvider.cs
- DataViewManager.cs
- StrongNamePublicKeyBlob.cs
- CompiledIdentityConstraint.cs
- TextSpanModifier.cs
- KeyNameIdentifierClause.cs
- JoinSymbol.cs
- ReadOnlyCollectionBase.cs
- DynamicRenderer.cs
- _SingleItemRequestCache.cs
- HybridCollection.cs
- GuidelineSet.cs
- ListItemCollection.cs
- SqlProvider.cs
- PageHandlerFactory.cs
- webclient.cs
- InstalledFontCollection.cs
- HwndProxyElementProvider.cs
- TextServicesPropertyRanges.cs
- AddressHeader.cs
- LinqDataSourceStatusEventArgs.cs
- FileUtil.cs
- RSACryptoServiceProvider.cs
- XmlWrappingReader.cs