Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Data / System / Data / Odbc / OdbcConnectionString.cs / 1 / OdbcConnectionString.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data.Odbc { using System; using System.Collections; using System.Data; using System.Data.Common; using System.Security; using System.Security.Permissions; using System.Text; internal sealed class OdbcConnectionString : DbConnectionOptions { // instances of this class are intended to be immutable, i.e readonly // used by pooling classes so it is much easier to verify correctness // when not worried about the class being modified during execution private static class KEY { internal const string SaveFile = "savefile"; } private readonly string _expandedConnectionString; internal OdbcConnectionString(string connectionString, bool validate) : base(connectionString, null, true) { if (!validate) { string filename = null; int position = 0; _expandedConnectionString = ExpandDataDirectories(ref filename, ref position); } if (validate || (null == _expandedConnectionString)) { // do not check string length if it was expanded because the final result may be shorter than the original if ((null != connectionString) && (ODBC32.MAX_CONNECTION_STRING_LENGTH < connectionString.Length)) { // MDAC 83536 throw ODBC.ConnectionStringTooLong(); } } } protected internal override System.Security.PermissionSet CreatePermissionSet() { System.Security.PermissionSet permissionSet; if (ContainsKey(KEY.SaveFile)) { permissionSet = new NamedPermissionSet("FullTrust"); } else { permissionSet = new System.Security.PermissionSet(System.Security.Permissions.PermissionState.None); permissionSet.AddPermission(new OdbcPermission(this)); } return permissionSet; } protected internal override string Expand() { if (null != _expandedConnectionString) { return _expandedConnectionString; } else { return base.Expand(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data.Odbc { using System; using System.Collections; using System.Data; using System.Data.Common; using System.Security; using System.Security.Permissions; using System.Text; internal sealed class OdbcConnectionString : DbConnectionOptions { // instances of this class are intended to be immutable, i.e readonly // used by pooling classes so it is much easier to verify correctness // when not worried about the class being modified during execution private static class KEY { internal const string SaveFile = "savefile"; } private readonly string _expandedConnectionString; internal OdbcConnectionString(string connectionString, bool validate) : base(connectionString, null, true) { if (!validate) { string filename = null; int position = 0; _expandedConnectionString = ExpandDataDirectories(ref filename, ref position); } if (validate || (null == _expandedConnectionString)) { // do not check string length if it was expanded because the final result may be shorter than the original if ((null != connectionString) && (ODBC32.MAX_CONNECTION_STRING_LENGTH < connectionString.Length)) { // MDAC 83536 throw ODBC.ConnectionStringTooLong(); } } } protected internal override System.Security.PermissionSet CreatePermissionSet() { System.Security.PermissionSet permissionSet; if (ContainsKey(KEY.SaveFile)) { permissionSet = new NamedPermissionSet("FullTrust"); } else { permissionSet = new System.Security.PermissionSet(System.Security.Permissions.PermissionState.None); permissionSet.AddPermission(new OdbcPermission(this)); } return permissionSet; } protected internal override string Expand() { if (null != _expandedConnectionString) { return _expandedConnectionString; } else { return base.Expand(); } } } } // 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
- DataQuery.cs
- MenuItemCollectionEditorDialog.cs
- BitmapEffectGeneralTransform.cs
- DataViewManagerListItemTypeDescriptor.cs
- XmlEventCache.cs
- SimpleExpression.cs
- DataGridViewTextBoxEditingControl.cs
- PrintPreviewControl.cs
- Vector3DKeyFrameCollection.cs
- InputQueue.cs
- AnimatedTypeHelpers.cs
- TemplatedMailWebEventProvider.cs
- DesignerActionList.cs
- WebPageTraceListener.cs
- Dynamic.cs
- CatalogZoneBase.cs
- TreeNodeClickEventArgs.cs
- ListViewDataItem.cs
- MouseGesture.cs
- MeshGeometry3D.cs
- ReadOnlyHierarchicalDataSourceView.cs
- HostVisual.cs
- BamlResourceSerializer.cs
- ChtmlSelectionListAdapter.cs
- Size.cs
- AnnotationStore.cs
- MultiTrigger.cs
- FlowDocumentPage.cs
- OptimizerPatterns.cs
- SoapFault.cs
- Config.cs
- InputScope.cs
- RootBrowserWindowProxy.cs
- ProviderCommandInfoUtils.cs
- DataGridViewCellMouseEventArgs.cs
- ObjectStateEntryDbDataRecord.cs
- WindowsServiceElement.cs
- TableProviderWrapper.cs
- DebugView.cs
- DesignSurfaceCollection.cs
- SharedUtils.cs
- DockingAttribute.cs
- QilLiteral.cs
- InArgumentConverter.cs
- DataStorage.cs
- DeferredElementTreeState.cs
- ToolStripSystemRenderer.cs
- FullTextBreakpoint.cs
- SiteMap.cs
- WebPartCollection.cs
- ImageAnimator.cs
- FillRuleValidation.cs
- ParameterModifier.cs
- RowToFieldTransformer.cs
- Misc.cs
- RecognizedWordUnit.cs
- AmbientEnvironment.cs
- ExtensionSimplifierMarkupObject.cs
- TableLayoutSettings.cs
- AvtEvent.cs
- DataControlLinkButton.cs
- SmiTypedGetterSetter.cs
- CodeMemberProperty.cs
- TextElement.cs
- DefaultPropertyAttribute.cs
- DocumentViewerBase.cs
- CustomErrorsSectionWrapper.cs
- MouseGesture.cs
- SoapEnumAttribute.cs
- DirectoryInfo.cs
- XslAstAnalyzer.cs
- ValidatorCollection.cs
- DataRelationPropertyDescriptor.cs
- CharUnicodeInfo.cs
- CodeAttributeArgumentCollection.cs
- FactoryMaker.cs
- ToolZone.cs
- SingleSelectRootGridEntry.cs
- ConstructorNeedsTagAttribute.cs
- WorkflowTraceTransfer.cs
- MarshalByRefObject.cs
- UdpDuplexChannel.cs
- MetadataArtifactLoaderCompositeFile.cs
- XslAst.cs
- DesignerActionVerbItem.cs
- ControlIdConverter.cs
- EntityClientCacheKey.cs
- ConfigurationStrings.cs
- ScrollChrome.cs
- VirtualPath.cs
- DesigntimeLicenseContextSerializer.cs
- FullTextLine.cs
- FlowchartSizeFeature.cs
- CorrelationManager.cs
- SoapWriter.cs
- ConnectionPool.cs
- XmlTypeMapping.cs
- SchemaComplexType.cs
- NativeWrapper.cs
- OleDbRowUpdatingEvent.cs