Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Net / System / Net / Mail / smtppermission.cs / 1 / smtppermission.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Mail { using System.Collections; using System.Security; using System.Security.Permissions; using System.Globalization; using System.Threading; ///public enum SmtpAccess { None = 0, Connect = 1, ConnectToUnrestrictedPort = 2}; /// [ AttributeUsage( AttributeTargets.Method | AttributeTargets.Constructor | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Assembly, AllowMultiple = true, Inherited = false )] [Serializable] public sealed class SmtpPermissionAttribute: CodeAccessSecurityAttribute { private const string strAccess = "Access"; private string access = null; /// public SmtpPermissionAttribute(SecurityAction action): base( action ) { } public string Access { get{ return access; } set{ access = value; } } /// public override IPermission CreatePermission() { SmtpPermission perm = null; if (Unrestricted) { perm = new SmtpPermission(PermissionState.Unrestricted); } else { perm = new SmtpPermission(PermissionState.None); if (access != null) { if (0 == string.Compare(access, "Connect", StringComparison.OrdinalIgnoreCase)) { perm.AddPermission(SmtpAccess.Connect); } else if (0 == string.Compare(access, "ConnectToUnrestrictedPort", StringComparison.OrdinalIgnoreCase)) { perm.AddPermission(SmtpAccess.ConnectToUnrestrictedPort); } else if (0 == string.Compare(access, "None", StringComparison.OrdinalIgnoreCase)) { perm.AddPermission(SmtpAccess.None); } else { throw new ArgumentException(SR.GetString(SR.net_perm_invalid_val, strAccess, access)); } } } return perm; } } /// [Serializable] public sealed class SmtpPermission: CodeAccessPermission, IUnrestrictedPermission { SmtpAccess access; private bool unrestricted; /// public SmtpPermission(PermissionState state) { if (state == PermissionState.Unrestricted){ access = SmtpAccess.ConnectToUnrestrictedPort; unrestricted = true; } else{ access = SmtpAccess.None; } } public SmtpPermission(bool unrestricted) { if (unrestricted){ access = SmtpAccess.ConnectToUnrestrictedPort; this.unrestricted = true; } else{ access = SmtpAccess.None; } } /// public SmtpPermission(SmtpAccess access) { this.access = access; } public SmtpAccess Access { get{ return access; } } /// public void AddPermission(SmtpAccess access) { if (access > this.access) this.access = access; } /// public bool IsUnrestricted() { return unrestricted; } /// public override IPermission Copy() { if(unrestricted){ return new SmtpPermission(true); } return new SmtpPermission(access); } /// public override IPermission Union(IPermission target) { if (target==null) { return this.Copy(); } SmtpPermission other = target as SmtpPermission; if(other == null) { throw new ArgumentException(SR.GetString(SR.net_perm_target), "target"); } if(unrestricted || other.IsUnrestricted()){ return new SmtpPermission(true); } return new SmtpPermission(this.access > other.access ? this.access : other.access); } /// public override IPermission Intersect(IPermission target) { if (target == null) { return null; } SmtpPermission other = target as SmtpPermission; if(other == null) { throw new ArgumentException(SR.GetString(SR.net_perm_target), "target"); } if(IsUnrestricted() && other.IsUnrestricted()){ return new SmtpPermission(true); } return new SmtpPermission(this.access < other.access ? this.access : other.access); } /// public override bool IsSubsetOf(IPermission target) { // Pattern suggested by security engine if (target == null) { return (access == SmtpAccess.None); } SmtpPermission other = target as SmtpPermission; if (other == null) { throw new ArgumentException(SR.GetString(SR.net_perm_target), "target"); } if(unrestricted && !other.IsUnrestricted()){ return false; } return (other.access >= access); } /// public override void FromXml(SecurityElement securityElement) { if (securityElement == null) { throw new ArgumentNullException("securityElement"); } if (!securityElement.Tag.Equals("IPermission")) { throw new ArgumentException(SR.GetString(SR.net_not_ipermission), "securityElement"); } string className = securityElement.Attribute("class"); if (className == null) { throw new ArgumentException(SR.GetString(SR.net_no_classname), "securityElement"); } if (className.IndexOf(this.GetType().FullName) < 0) { throw new ArgumentException(SR.GetString(SR.net_no_typename), "securityElement"); } String str = securityElement.Attribute("Unrestricted"); if (str != null) { if (0 == string.Compare( str, "true", StringComparison.OrdinalIgnoreCase)){ access = SmtpAccess.ConnectToUnrestrictedPort; unrestricted = true; return; } } str = securityElement.Attribute("Access"); if (str != null) { if(0 == string.Compare(str, "Connect", StringComparison.OrdinalIgnoreCase)){ access = SmtpAccess.Connect; } else if(0 == string.Compare(str, "ConnectToUnrestrictedPort", StringComparison.OrdinalIgnoreCase)){ access = SmtpAccess.ConnectToUnrestrictedPort; } else if(0 == string.Compare(str, "None", StringComparison.OrdinalIgnoreCase)){ access = SmtpAccess.None; } else{ throw new ArgumentException(SR.GetString(SR.net_perm_invalid_val_in_element), "Access"); } } } /// public override SecurityElement ToXml() { SecurityElement securityElement = new SecurityElement( "IPermission" ); securityElement.AddAttribute("class", this.GetType().FullName + ", " + this.GetType().Module.Assembly.FullName.Replace( '\"', '\'' )); securityElement.AddAttribute("version", "1"); if(unrestricted){ securityElement.AddAttribute("Unrestricted", "true"); return securityElement; } if (access == SmtpAccess.Connect) { securityElement.AddAttribute("Access", "Connect"); } else if (access == SmtpAccess.ConnectToUnrestrictedPort) { securityElement.AddAttribute("Access", "ConnectToUnrestrictedPort"); } return securityElement; } }// class SmtpPermission } // namespace System.Net // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Mail { using System.Collections; using System.Security; using System.Security.Permissions; using System.Globalization; using System.Threading; ///public enum SmtpAccess { None = 0, Connect = 1, ConnectToUnrestrictedPort = 2}; /// [ AttributeUsage( AttributeTargets.Method | AttributeTargets.Constructor | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Assembly, AllowMultiple = true, Inherited = false )] [Serializable] public sealed class SmtpPermissionAttribute: CodeAccessSecurityAttribute { private const string strAccess = "Access"; private string access = null; /// public SmtpPermissionAttribute(SecurityAction action): base( action ) { } public string Access { get{ return access; } set{ access = value; } } /// public override IPermission CreatePermission() { SmtpPermission perm = null; if (Unrestricted) { perm = new SmtpPermission(PermissionState.Unrestricted); } else { perm = new SmtpPermission(PermissionState.None); if (access != null) { if (0 == string.Compare(access, "Connect", StringComparison.OrdinalIgnoreCase)) { perm.AddPermission(SmtpAccess.Connect); } else if (0 == string.Compare(access, "ConnectToUnrestrictedPort", StringComparison.OrdinalIgnoreCase)) { perm.AddPermission(SmtpAccess.ConnectToUnrestrictedPort); } else if (0 == string.Compare(access, "None", StringComparison.OrdinalIgnoreCase)) { perm.AddPermission(SmtpAccess.None); } else { throw new ArgumentException(SR.GetString(SR.net_perm_invalid_val, strAccess, access)); } } } return perm; } } /// [Serializable] public sealed class SmtpPermission: CodeAccessPermission, IUnrestrictedPermission { SmtpAccess access; private bool unrestricted; /// public SmtpPermission(PermissionState state) { if (state == PermissionState.Unrestricted){ access = SmtpAccess.ConnectToUnrestrictedPort; unrestricted = true; } else{ access = SmtpAccess.None; } } public SmtpPermission(bool unrestricted) { if (unrestricted){ access = SmtpAccess.ConnectToUnrestrictedPort; this.unrestricted = true; } else{ access = SmtpAccess.None; } } /// public SmtpPermission(SmtpAccess access) { this.access = access; } public SmtpAccess Access { get{ return access; } } /// public void AddPermission(SmtpAccess access) { if (access > this.access) this.access = access; } /// public bool IsUnrestricted() { return unrestricted; } /// public override IPermission Copy() { if(unrestricted){ return new SmtpPermission(true); } return new SmtpPermission(access); } /// public override IPermission Union(IPermission target) { if (target==null) { return this.Copy(); } SmtpPermission other = target as SmtpPermission; if(other == null) { throw new ArgumentException(SR.GetString(SR.net_perm_target), "target"); } if(unrestricted || other.IsUnrestricted()){ return new SmtpPermission(true); } return new SmtpPermission(this.access > other.access ? this.access : other.access); } /// public override IPermission Intersect(IPermission target) { if (target == null) { return null; } SmtpPermission other = target as SmtpPermission; if(other == null) { throw new ArgumentException(SR.GetString(SR.net_perm_target), "target"); } if(IsUnrestricted() && other.IsUnrestricted()){ return new SmtpPermission(true); } return new SmtpPermission(this.access < other.access ? this.access : other.access); } /// public override bool IsSubsetOf(IPermission target) { // Pattern suggested by security engine if (target == null) { return (access == SmtpAccess.None); } SmtpPermission other = target as SmtpPermission; if (other == null) { throw new ArgumentException(SR.GetString(SR.net_perm_target), "target"); } if(unrestricted && !other.IsUnrestricted()){ return false; } return (other.access >= access); } /// public override void FromXml(SecurityElement securityElement) { if (securityElement == null) { throw new ArgumentNullException("securityElement"); } if (!securityElement.Tag.Equals("IPermission")) { throw new ArgumentException(SR.GetString(SR.net_not_ipermission), "securityElement"); } string className = securityElement.Attribute("class"); if (className == null) { throw new ArgumentException(SR.GetString(SR.net_no_classname), "securityElement"); } if (className.IndexOf(this.GetType().FullName) < 0) { throw new ArgumentException(SR.GetString(SR.net_no_typename), "securityElement"); } String str = securityElement.Attribute("Unrestricted"); if (str != null) { if (0 == string.Compare( str, "true", StringComparison.OrdinalIgnoreCase)){ access = SmtpAccess.ConnectToUnrestrictedPort; unrestricted = true; return; } } str = securityElement.Attribute("Access"); if (str != null) { if(0 == string.Compare(str, "Connect", StringComparison.OrdinalIgnoreCase)){ access = SmtpAccess.Connect; } else if(0 == string.Compare(str, "ConnectToUnrestrictedPort", StringComparison.OrdinalIgnoreCase)){ access = SmtpAccess.ConnectToUnrestrictedPort; } else if(0 == string.Compare(str, "None", StringComparison.OrdinalIgnoreCase)){ access = SmtpAccess.None; } else{ throw new ArgumentException(SR.GetString(SR.net_perm_invalid_val_in_element), "Access"); } } } /// public override SecurityElement ToXml() { SecurityElement securityElement = new SecurityElement( "IPermission" ); securityElement.AddAttribute("class", this.GetType().FullName + ", " + this.GetType().Module.Assembly.FullName.Replace( '\"', '\'' )); securityElement.AddAttribute("version", "1"); if(unrestricted){ securityElement.AddAttribute("Unrestricted", "true"); return securityElement; } if (access == SmtpAccess.Connect) { securityElement.AddAttribute("Access", "Connect"); } else if (access == SmtpAccess.ConnectToUnrestrictedPort) { securityElement.AddAttribute("Access", "ConnectToUnrestrictedPort"); } return securityElement; } }// class SmtpPermission } // namespace System.Net // 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
- HtmlInputImage.cs
- SmiMetaDataProperty.cs
- ColumnCollection.cs
- ImplicitInputBrush.cs
- BuildProviderCollection.cs
- SpeakCompletedEventArgs.cs
- PropertyChangedEventManager.cs
- DocumentViewerAutomationPeer.cs
- Int16AnimationUsingKeyFrames.cs
- XmlDictionaryWriter.cs
- PackageRelationshipCollection.cs
- DispatcherExceptionEventArgs.cs
- MultiAsyncResult.cs
- PathParser.cs
- HeaderedItemsControl.cs
- DbProviderConfigurationHandler.cs
- XpsPartBase.cs
- XmlAnyElementAttributes.cs
- Pool.cs
- DataBindingHandlerAttribute.cs
- XmlSchemaType.cs
- TextBoxView.cs
- SerializableTypeCodeDomSerializer.cs
- OpenTypeLayout.cs
- DateTimeOffsetStorage.cs
- CfgSemanticTag.cs
- ValidatorUtils.cs
- InvalidCommandTreeException.cs
- HierarchicalDataSourceControl.cs
- WindowsFormsSectionHandler.cs
- UserControl.cs
- ErrorItem.cs
- HandlerFactoryWrapper.cs
- XmlAutoDetectWriter.cs
- DirectoryRootQuery.cs
- XmlSerializationWriter.cs
- ClientRolePrincipal.cs
- RegistryKey.cs
- ClipboardProcessor.cs
- Rect3DValueSerializer.cs
- Point3DIndependentAnimationStorage.cs
- SqlMetaData.cs
- MetaData.cs
- _ServiceNameStore.cs
- ProxyWebPart.cs
- TaskDesigner.cs
- TextFindEngine.cs
- ShutDownListener.cs
- TemplatedWizardStep.cs
- UnionCqlBlock.cs
- SafeBitVector32.cs
- PeerNameRecordCollection.cs
- InterleavedZipPartStream.cs
- LayoutTableCell.cs
- FacetDescription.cs
- StrokeCollectionConverter.cs
- StylusPointPropertyId.cs
- PropertyChangeTracker.cs
- CompilerErrorCollection.cs
- TextParaClient.cs
- DrawingImage.cs
- DateTimeFormat.cs
- AnonymousIdentificationModule.cs
- BrowserDefinitionCollection.cs
- Resources.Designer.cs
- Screen.cs
- PtsHost.cs
- ImpersonateTokenRef.cs
- BaseCollection.cs
- SynchronizationFilter.cs
- VirtualPathProvider.cs
- BufferModeSettings.cs
- XamlLoadErrorInfo.cs
- FileDialog.cs
- GlyphRun.cs
- ClientCultureInfo.cs
- XmlFormatExtensionPrefixAttribute.cs
- ConsoleCancelEventArgs.cs
- AvTraceFormat.cs
- StringSorter.cs
- CacheOutputQuery.cs
- RegionInfo.cs
- TextProperties.cs
- BinaryWriter.cs
- Array.cs
- InternalControlCollection.cs
- MethodExpression.cs
- Debug.cs
- GridViewCommandEventArgs.cs
- IDispatchConstantAttribute.cs
- Material.cs
- BeginStoryboard.cs
- CompositeTypefaceMetrics.cs
- ConstraintStruct.cs
- DocumentViewerAutomationPeer.cs
- BulletedListDesigner.cs
- ComponentDispatcher.cs
- WizardStepBase.cs
- EventLogConfiguration.cs
- ProtocolsConfigurationEntry.cs