Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataWebControlsDesign / System / Data / WebControls / Design / EntityConnectionStringBuilderItem.cs / 1305376 / EntityConnectionStringBuilderItem.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //----------------------------------------------------------------------------- using System.Data.EntityClient; using System.Diagnostics; namespace System.Web.UI.Design.WebControls { internal class EntityConnectionStringBuilderItem : IComparable{ // Only one of the following should be set. This is enforced through the constructors and the fact that these fields are readonly. private readonly EntityConnectionStringBuilder _connectionStringBuilder; private readonly string _unknownConnectionString; // used when the string cannot be loaded into a connection string builder or is missing some required keywords internal EntityConnectionStringBuilderItem(EntityConnectionStringBuilder connectionStringBuilder) { // empty connection string builder is allowed, but not null Debug.Assert(connectionStringBuilder != null, "null connectionStringBuilder"); _connectionStringBuilder = connectionStringBuilder; } internal EntityConnectionStringBuilderItem(string unknownConnectionString) { // empty is not allowed -- use the constructor that takes a builder if the string is empty Debug.Assert(!String.IsNullOrEmpty(unknownConnectionString), "null or empty unknownConnectionString"); _unknownConnectionString = unknownConnectionString; } internal string ConnectionString { get { if (_connectionStringBuilder != null) { return _connectionStringBuilder.ConnectionString; } else { return _unknownConnectionString; } } } internal EntityConnectionStringBuilder EntityConnectionStringBuilder { get { return _connectionStringBuilder; } } internal bool IsEmpty { get { return String.IsNullOrEmpty(this.ConnectionString); } } internal bool IsNamedConnection { get { if (_connectionStringBuilder != null) { return !String.IsNullOrEmpty(_connectionStringBuilder.Name); } else { // if the connection string is not recognized by a EntityConnectionStringBuilder, it can't be a valid named connection return false; } } } public override string ToString() { // Display just the name for named connections, but the full connection string otherwise if (_connectionStringBuilder != null) { if (!String.IsNullOrEmpty(_connectionStringBuilder.Name)) { return _connectionStringBuilder.Name; } else { return _connectionStringBuilder.ConnectionString; } } else { return _unknownConnectionString; } } int IComparable .CompareTo(EntityConnectionStringBuilderItem other) { return (String.Compare(this.ToString(), other.ToString(), StringComparison.OrdinalIgnoreCase)); } } } // 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
- OleCmdHelper.cs
- XmlSchemaInfo.cs
- DocumentGridPage.cs
- XmlSiteMapProvider.cs
- ComponentEvent.cs
- EntityDataSourceDataSelection.cs
- XmlElementCollection.cs
- ScalarOps.cs
- VisualStyleRenderer.cs
- FormViewPagerRow.cs
- TransformPattern.cs
- RequestCachePolicyConverter.cs
- DataGridPageChangedEventArgs.cs
- IsolatedStorageFileStream.cs
- ColorConverter.cs
- UnionExpr.cs
- Themes.cs
- SiteMapSection.cs
- HwndHostAutomationPeer.cs
- ToolStripCustomTypeDescriptor.cs
- RoutedCommand.cs
- Image.cs
- EventlogProvider.cs
- MemberHolder.cs
- XmlSerializerFormatAttribute.cs
- HttpRawResponse.cs
- SafeEventLogReadHandle.cs
- SchemaCollectionPreprocessor.cs
- SignatureHelper.cs
- ApplicationProxyInternal.cs
- CodeLabeledStatement.cs
- PointAnimationClockResource.cs
- LinqDataSourceDisposeEventArgs.cs
- EngineSite.cs
- RadioButtonPopupAdapter.cs
- PageCatalogPart.cs
- SerializableAttribute.cs
- XXXInfos.cs
- CompositeScriptReferenceEventArgs.cs
- SqlXmlStorage.cs
- SuppressIldasmAttribute.cs
- PeerNameResolver.cs
- QilInvokeEarlyBound.cs
- DifferencingCollection.cs
- AspNetRouteServiceHttpHandler.cs
- FixedStringLookup.cs
- EnterpriseServicesHelper.cs
- XmlNamespaceMappingCollection.cs
- MenuEventArgs.cs
- ScriptIgnoreAttribute.cs
- RawTextInputReport.cs
- RSAProtectedConfigurationProvider.cs
- SoapSchemaMember.cs
- GACMembershipCondition.cs
- odbcmetadatacolumnnames.cs
- MappingItemCollection.cs
- TdsParserStateObject.cs
- DocumentSchemaValidator.cs
- PerformanceCounterPermissionEntryCollection.cs
- DeviceContext2.cs
- TableItemStyle.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- FormViewDeletedEventArgs.cs
- Stream.cs
- ColumnMapTranslator.cs
- BasePattern.cs
- ErrorItem.cs
- CustomValidator.cs
- BindingNavigator.cs
- SessionPageStatePersister.cs
- LinqTreeNodeEvaluator.cs
- BitmapCache.cs
- DataGridViewCellFormattingEventArgs.cs
- APCustomTypeDescriptor.cs
- Mappings.cs
- BatchWriter.cs
- _IPv4Address.cs
- ClientCultureInfo.cs
- BitmapImage.cs
- AesCryptoServiceProvider.cs
- DataGridViewColumnCollection.cs
- MessageParameterAttribute.cs
- InlineObject.cs
- DataGridViewLinkColumn.cs
- BufferedMessageWriter.cs
- ConnectionConsumerAttribute.cs
- TableCell.cs
- CommonGetThemePartSize.cs
- ListBindingHelper.cs
- WorkItem.cs
- Shape.cs
- MiniAssembly.cs
- ElementAtQueryOperator.cs
- IsolatedStorage.cs
- DataBoundControlHelper.cs
- DefaultValidator.cs
- BidPrivateBase.cs
- GridViewColumnCollection.cs
- DrawingContextDrawingContextWalker.cs
- PaperSource.cs