Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / System / data / design / TableAdapterManagerNameHandler.cs / 2 / TableAdapterManagerNameHandler.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All Rights Reserved. // Information Contained Herein is Proprietary and Confidential. // //----------------------------------------------------------------------------- namespace System.Data.Design { using System; using System.CodeDom; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.Common; using System.Data.SqlClient; using System.Design; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.CodeDom.Compiler; internal sealed class TableAdapterManagerNameHandler { // Non-private class/method/property names used in TableAdapterManager internal const string TableAdapterManagerClassName = "TableAdapterManager"; internal const string SelfRefComparerClass = "SelfReferenceComparer"; internal const string UpdateAllMethod = "UpdateAll"; internal const string SortSelfRefRowsMethod = "SortSelfReferenceRows"; internal const string MatchTAConnectionMethod = "MatchTableAdapterConnection"; internal const string UpdateAllRevertConnectionsVar = "revertConnections"; internal const string ConnectionVar = "_connection"; internal const string ConnectionProperty = "Connection"; internal const string BackupDataSetBeforeUpdateVar = "_backupDataSetBeforeUpdate"; internal const string BackupDataSetBeforeUpdateProperty = "BackupDataSetBeforeUpdate"; internal const string TableAdapterInstanceCountProperty = "TableAdapterInstanceCount"; internal const string UpdateOrderOptionProperty = "UpdateOrder"; internal const string UpdateOrderOptionVar = "_updateOrder"; internal const string UpdateOrderOptionEnum = "UpdateOrderOption"; internal const string UpdateOrderOptionEnumIUD = "InsertUpdateDelete"; internal const string UpdateOrderOptionEnumUID = "UpdateInsertDelete"; internal const string UpdateUpdatedRowsMethod = "UpdateUpdatedRows"; internal const string UpdateInsertedRowsMethod = "UpdateInsertedRows"; internal const string UpdateDeletedRowsMethod = "UpdateDeletedRows"; internal const string GetRealUpdatedRowsMethod = "GetRealUpdatedRows"; private MemberNameValidator tableAdapterManagerValidator = null; private bool languageCaseInsensitive = false; private CodeDomProvider codePrivider = null; public TableAdapterManagerNameHandler(CodeDomProvider provider) { this.codePrivider = provider; this.languageCaseInsensitive = (this.codePrivider.LanguageOptions & LanguageOptions.CaseInsensitive) == LanguageOptions.CaseInsensitive; } private MemberNameValidator TableAdapterManagerValidator { get { if (tableAdapterManagerValidator == null) { tableAdapterManagerValidator = new MemberNameValidator( new string[]{ SelfRefComparerClass, UpdateAllMethod, SortSelfRefRowsMethod, MatchTAConnectionMethod, ConnectionVar, ConnectionProperty, BackupDataSetBeforeUpdateVar, BackupDataSetBeforeUpdateProperty, TableAdapterInstanceCountProperty, UpdateOrderOptionProperty, UpdateOrderOptionVar, UpdateOrderOptionEnum, UpdateUpdatedRowsMethod, UpdateInsertedRowsMethod, UpdateDeletedRowsMethod, GetRealUpdatedRowsMethod }, this.codePrivider, this.languageCaseInsensitive); } return this.tableAdapterManagerValidator; } } ////// Get a valid member name not conflict with known reserved name like ConnectionManager /// /// ///internal string GetNewMemberName(string memberName) { return this.TableAdapterManagerValidator.GetNewMemberName(memberName); } /// /// Get an valid TableAdapter property name /// e.g. the class name can be CustomerTableAdapter /// the property name can be CustomerTableAdapter as well if not conflict /// /// ///internal string GetTableAdapterPropName(string className) { return this.GetNewMemberName(className); } /// /// Helper function to get the TableAdapter variable name /// /// Property Name, e.g. CustomerTableAdapter ///variable name like _customerTableAdapter internal string GetTableAdapterVarName(string propName) { Debug.Assert(propName != null && propName.Length > 0); Debug.Assert(propName.IndexOf('.') < 0); propName = "_" + Char.ToLower(propName[0],CultureInfo.InvariantCulture) + propName.Remove(0, 1); // return this.GetNewMemberName(propName); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SafeArrayRankMismatchException.cs
- CommandManager.cs
- XmlSchemaComplexContent.cs
- TableRow.cs
- XPathSingletonIterator.cs
- RegexCapture.cs
- MultipleCopiesCollection.cs
- BasicDesignerLoader.cs
- XPathNavigatorKeyComparer.cs
- X509Utils.cs
- PersonalizationDictionary.cs
- DesignerVerbCollection.cs
- PresentationTraceSources.cs
- ReadOnlyCollection.cs
- DataSourceCache.cs
- DataRecordObjectView.cs
- MethodBuilder.cs
- XmlSerializerNamespaces.cs
- DescriptionCreator.cs
- Timer.cs
- EventProxy.cs
- SqlHelper.cs
- DbConnectionFactory.cs
- SingleAnimationUsingKeyFrames.cs
- Duration.cs
- KeyNotFoundException.cs
- ArraySet.cs
- ProvideValueServiceProvider.cs
- GcSettings.cs
- SelectedGridItemChangedEvent.cs
- UIEndRequest.cs
- DotAtomReader.cs
- PointValueSerializer.cs
- SoapObjectReader.cs
- CollectionViewGroup.cs
- NetCodeGroup.cs
- BinaryMethodMessage.cs
- MenuItemAutomationPeer.cs
- SqlProviderManifest.cs
- DbConnectionPoolOptions.cs
- DataGridTextBox.cs
- UndirectedGraph.cs
- SqlWriter.cs
- SessionEndingCancelEventArgs.cs
- ObjectDataSourceStatusEventArgs.cs
- Underline.cs
- LazyTextWriterCreator.cs
- HttpBindingExtension.cs
- BitmapEffectGroup.cs
- WindowsFont.cs
- WebPartEditorApplyVerb.cs
- ChannelManagerHelpers.cs
- GradientStop.cs
- SettingsSavedEventArgs.cs
- MailFileEditor.cs
- ContentPropertyAttribute.cs
- StringBuilder.cs
- AppDomainShutdownMonitor.cs
- CodeNamespaceImportCollection.cs
- FieldAccessException.cs
- PrivacyNoticeBindingElementImporter.cs
- KeyPullup.cs
- Int32Animation.cs
- HttpProcessUtility.cs
- DefaultMemberAttribute.cs
- SchemaTypeEmitter.cs
- NodeLabelEditEvent.cs
- Selection.cs
- DataGridItemEventArgs.cs
- PermissionRequestEvidence.cs
- BehaviorService.cs
- MexNamedPipeBindingCollectionElement.cs
- ObjectMemberMapping.cs
- __Error.cs
- UInt32Storage.cs
- RsaSecurityTokenParameters.cs
- AudioLevelUpdatedEventArgs.cs
- EntityCollection.cs
- ImageResources.Designer.cs
- LingerOption.cs
- XmlNamespaceMappingCollection.cs
- SqlUdtInfo.cs
- CustomError.cs
- StateBag.cs
- TextProviderWrapper.cs
- QuestionEventArgs.cs
- BinaryReader.cs
- HistoryEventArgs.cs
- ZipIOLocalFileDataDescriptor.cs
- OperationBehaviorAttribute.cs
- Wildcard.cs
- ToggleProviderWrapper.cs
- WeakEventTable.cs
- DependencyObjectPropertyDescriptor.cs
- BackgroundWorker.cs
- InkCanvas.cs
- OverrideMode.cs
- NamedPermissionSet.cs
- HttpFormatExtensions.cs
- HttpCookie.cs