Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Data / System / Data / OleDb / OleDbPermission.cs / 1305376 / OleDbPermission.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
// [....]
//-----------------------------------------------------------------------------
namespace System.Data.OleDb {
using System.Collections;
using System.Collections.Generic;
using System.Data.Common;
using System.Globalization;
using System.Runtime.Serialization;
using System.Security;
using System.Security.Permissions;
[Serializable]
public sealed class OleDbPermission : DBDataPermission {
private String[] _providerRestriction; // should never be string[0]
private String _providers;
[ Obsolete("OleDbPermission() has been deprecated. Use the OleDbPermission(PermissionState.None) constructor. http://go.microsoft.com/fwlink/?linkid=14202", true) ] // MDAC 86034
public OleDbPermission() : this(PermissionState.None) {
}
public OleDbPermission(PermissionState state) : base(state) {
}
[ Obsolete("OleDbPermission(PermissionState state, Boolean allowBlankPassword) has been deprecated. Use the OleDbPermission(PermissionState.None) constructor. http://go.microsoft.com/fwlink/?linkid=14202", true) ] // MDAC 86034
public OleDbPermission(PermissionState state, bool allowBlankPassword) : this(state) {
AllowBlankPassword = allowBlankPassword;
}
private OleDbPermission(OleDbPermission permission) : base(permission) { // for Copy
}
internal OleDbPermission(OleDbPermissionAttribute permissionAttribute) : base(permissionAttribute) { // for CreatePermission
}
internal OleDbPermission(OleDbConnectionString constr) : base(constr) { // for Open
if ((null == constr) || constr.IsEmpty) {
base.Add(ADP.StrEmpty, ADP.StrEmpty, KeyRestrictionBehavior.AllowOnly);
}
}
[System.ComponentModel.Browsable(false)]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[Obsolete("Provider property has been deprecated. Use the Add method. http://go.microsoft.com/fwlink/?linkid=14202")]
public string Provider {
get {
string providers = _providers; // MDAC 83103
if (null == providers) {
string[] restrictions = _providerRestriction;
if (null != restrictions) {
if (0 < restrictions.Length) {
providers = restrictions[0];
for (int i = 1; i < restrictions.Length; ++i) {
providers += ";" + restrictions[i];
}
}
}
}
return ((null != providers) ? providers : ADP.StrEmpty);
}
set { // MDAC 61263
string[] restrictions = null;
if (!ADP.IsEmpty(value)) {
restrictions = value.Split(new char[1] { ';' });
restrictions = DBConnectionString.RemoveDuplicates(restrictions);
}
_providerRestriction = restrictions;
_providers = value;
}
}
override public IPermission Copy () {
return new OleDbPermission(this);
}
}
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Constructor | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Assembly, AllowMultiple = true, Inherited = false )]
[Serializable]
public sealed class OleDbPermissionAttribute : DBDataPermissionAttribute {
private String _providers;
public OleDbPermissionAttribute(SecurityAction action) : base(action) {
}
[System.ComponentModel.Browsable(false)]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[Obsolete("Provider property has been deprecated. Use the Add method. http://go.microsoft.com/fwlink/?linkid=14202")]
public String Provider {
get {
string providers = _providers;
return ((null != providers) ? providers : ADP.StrEmpty);
}
set {
_providers = value;
}
}
override public IPermission CreatePermission() {
return new OleDbPermission(this);
}
}
}
// 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
- ExtensionQuery.cs
- ModelPerspective.cs
- HtmlShimManager.cs
- MethodMessage.cs
- ProjectionCamera.cs
- ToolStripSeparatorRenderEventArgs.cs
- RectAnimationUsingKeyFrames.cs
- NullableBoolConverter.cs
- ToolboxComponentsCreatedEventArgs.cs
- StrongNameKeyPair.cs
- UserControl.cs
- ArrangedElement.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- ConstrainedDataObject.cs
- UseManagedPresentationBindingElement.cs
- SymbolEqualComparer.cs
- ApplicationProxyInternal.cs
- RelationshipEndMember.cs
- EventBookmark.cs
- PreviewKeyDownEventArgs.cs
- SafeBitVector32.cs
- Visitors.cs
- TraceXPathNavigator.cs
- AutomationAttributeInfo.cs
- Debug.cs
- FeedUtils.cs
- RegisteredHiddenField.cs
- TextPattern.cs
- DefaultProxySection.cs
- DoubleAnimation.cs
- XmlBinaryReader.cs
- SqlTransaction.cs
- ConnectionManagementElementCollection.cs
- Column.cs
- WebScriptServiceHostFactory.cs
- SplayTreeNode.cs
- XmlSerializerNamespaces.cs
- LongTypeConverter.cs
- HostingEnvironmentException.cs
- TransformConverter.cs
- panel.cs
- URL.cs
- TablePatternIdentifiers.cs
- CubicEase.cs
- _ListenerRequestStream.cs
- RectangleHotSpot.cs
- SignedInfo.cs
- FormatterConverter.cs
- DispatcherHookEventArgs.cs
- StreamUpgradeProvider.cs
- Perspective.cs
- PerformanceCounterManager.cs
- TableLayoutStyleCollection.cs
- TcpProcessProtocolHandler.cs
- UserControlAutomationPeer.cs
- CardSpaceSelector.cs
- RNGCryptoServiceProvider.cs
- RegexMatchCollection.cs
- UIElementAutomationPeer.cs
- DirectionalLight.cs
- GridViewDeleteEventArgs.cs
- QueryAccessibilityHelpEvent.cs
- ISCIIEncoding.cs
- GetPageCompletedEventArgs.cs
- WizardSideBarListControlItemEventArgs.cs
- DataServiceClientException.cs
- ConditionalAttribute.cs
- Util.cs
- CodeDOMUtility.cs
- SqlSupersetValidator.cs
- ScaleTransform.cs
- ContentOperations.cs
- SymmetricAlgorithm.cs
- ObjectAnimationUsingKeyFrames.cs
- Policy.cs
- PagesSection.cs
- EmptyImpersonationContext.cs
- UserControlCodeDomTreeGenerator.cs
- XmlBufferedByteStreamReader.cs
- ForeignKeyConstraint.cs
- DataGridTableCollection.cs
- XmlnsDefinitionAttribute.cs
- ReflectionUtil.cs
- EnumMember.cs
- TableLayoutRowStyleCollection.cs
- DataFormats.cs
- RefType.cs
- Decoder.cs
- DependencyObject.cs
- XmlTextAttribute.cs
- CachedFontFace.cs
- InlineObject.cs
- HelpFileFileNameEditor.cs
- OdbcStatementHandle.cs
- EditorPartCollection.cs
- LockCookie.cs
- FileDialog_Vista_Interop.cs
- CustomAttributeBuilder.cs
- BaseTemplateParser.cs
- ToolStripPanelCell.cs