Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / clr / src / BCL / System / Security / Policy / Zone.cs / 1 / Zone.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // // Zone.cs // // Zone is an IIdentity representing Internet/Intranet/MyComputer etc. // namespace System.Security.Policy { using System.Security.Util; using ZoneIdentityPermission = System.Security.Permissions.ZoneIdentityPermission; using System.Runtime.CompilerServices; using System.Runtime.Serialization; [Serializable] [System.Runtime.InteropServices.ComVisible(true)] sealed public class Zone : IIdentityPermissionFactory, IBuiltInEvidence { [OptionalField(VersionAdded = 2)] private String m_url; private SecurityZone m_zone; private static readonly String[] s_names = {"MyComputer", "Intranet", "Trusted", "Internet", "Untrusted", "NoZone"}; internal Zone() { m_url = null; m_zone = SecurityZone.NoZone; } public Zone(SecurityZone zone) { if (zone < SecurityZone.NoZone || zone > SecurityZone.Untrusted) throw new ArgumentException( Environment.GetResourceString( "Argument_IllegalZone" ) ); m_url = null; m_zone = zone; } private Zone(String url) { m_url = url; m_zone = SecurityZone.NoZone; } public static Zone CreateFromUrl( String url ) { if (url == null) throw new ArgumentNullException( "url" ); return new Zone( url ); } [MethodImplAttribute(MethodImplOptions.InternalCall)] private extern static SecurityZone _CreateFromUrl( String url ); public IPermission CreateIdentityPermission( Evidence evidence ) { return new ZoneIdentityPermission( SecurityZone ); } public SecurityZone SecurityZone { get { if (m_url != null) m_zone = _CreateFromUrl( m_url ); return m_zone; } } public override bool Equals(Object o) { if (o is Zone) { Zone z = (Zone) o; return SecurityZone == z.SecurityZone; } return false; } public override int GetHashCode() { return (int)SecurityZone; } public Object Copy() { Zone z = new Zone(); z.m_zone = m_zone; z.m_url = m_url; return z; } internal SecurityElement ToXml() { SecurityElement elem = new SecurityElement( "System.Security.Policy.Zone" ); // If you hit this assert then most likely you are trying to change the name of this class. // This is ok as long as you change the hard coded string above and change the assert below. BCLDebug.Assert( this.GetType().FullName.Equals( "System.Security.Policy.Zone" ), "Class name changed!" ); elem.AddAttribute( "version", "1" ); if (SecurityZone != SecurityZone.NoZone) elem.AddChild( new SecurityElement( "Zone", s_names[(int)SecurityZone] ) ); else elem.AddChild( new SecurityElement( "Zone", s_names[s_names.Length-1] ) ); return elem; } ///int IBuiltInEvidence.OutputToBuffer( char[] buffer, int position, bool verbose ) { buffer[position] = BuiltInEvidenceHelper.idZone; BuiltInEvidenceHelper.CopyIntToCharArray( (int)SecurityZone, buffer, position + 1 ); return position + 3; } /// int IBuiltInEvidence.GetRequiredSize(bool verbose) { return 3; } /// int IBuiltInEvidence.InitFromBuffer( char[] buffer, int position ) { m_url = null; m_zone = (SecurityZone)BuiltInEvidenceHelper.GetIntFromCharArray(buffer, position); return position + 2; } public override String ToString() { return ToXml().ToString(); } // INormalizeForIsolatedStorage is not implemented for startup perf // equivalent to INormalizeForIsolatedStorage.Normalize() internal Object Normalize() { return s_names[(int)SecurityZone]; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // // Zone.cs // // Zone is an IIdentity representing Internet/Intranet/MyComputer etc. // namespace System.Security.Policy { using System.Security.Util; using ZoneIdentityPermission = System.Security.Permissions.ZoneIdentityPermission; using System.Runtime.CompilerServices; using System.Runtime.Serialization; [Serializable] [System.Runtime.InteropServices.ComVisible(true)] sealed public class Zone : IIdentityPermissionFactory, IBuiltInEvidence { [OptionalField(VersionAdded = 2)] private String m_url; private SecurityZone m_zone; private static readonly String[] s_names = {"MyComputer", "Intranet", "Trusted", "Internet", "Untrusted", "NoZone"}; internal Zone() { m_url = null; m_zone = SecurityZone.NoZone; } public Zone(SecurityZone zone) { if (zone < SecurityZone.NoZone || zone > SecurityZone.Untrusted) throw new ArgumentException( Environment.GetResourceString( "Argument_IllegalZone" ) ); m_url = null; m_zone = zone; } private Zone(String url) { m_url = url; m_zone = SecurityZone.NoZone; } public static Zone CreateFromUrl( String url ) { if (url == null) throw new ArgumentNullException( "url" ); return new Zone( url ); } [MethodImplAttribute(MethodImplOptions.InternalCall)] private extern static SecurityZone _CreateFromUrl( String url ); public IPermission CreateIdentityPermission( Evidence evidence ) { return new ZoneIdentityPermission( SecurityZone ); } public SecurityZone SecurityZone { get { if (m_url != null) m_zone = _CreateFromUrl( m_url ); return m_zone; } } public override bool Equals(Object o) { if (o is Zone) { Zone z = (Zone) o; return SecurityZone == z.SecurityZone; } return false; } public override int GetHashCode() { return (int)SecurityZone; } public Object Copy() { Zone z = new Zone(); z.m_zone = m_zone; z.m_url = m_url; return z; } internal SecurityElement ToXml() { SecurityElement elem = new SecurityElement( "System.Security.Policy.Zone" ); // If you hit this assert then most likely you are trying to change the name of this class. // This is ok as long as you change the hard coded string above and change the assert below. BCLDebug.Assert( this.GetType().FullName.Equals( "System.Security.Policy.Zone" ), "Class name changed!" ); elem.AddAttribute( "version", "1" ); if (SecurityZone != SecurityZone.NoZone) elem.AddChild( new SecurityElement( "Zone", s_names[(int)SecurityZone] ) ); else elem.AddChild( new SecurityElement( "Zone", s_names[s_names.Length-1] ) ); return elem; } /// int IBuiltInEvidence.OutputToBuffer( char[] buffer, int position, bool verbose ) { buffer[position] = BuiltInEvidenceHelper.idZone; BuiltInEvidenceHelper.CopyIntToCharArray( (int)SecurityZone, buffer, position + 1 ); return position + 3; } /// int IBuiltInEvidence.GetRequiredSize(bool verbose) { return 3; } /// int IBuiltInEvidence.InitFromBuffer( char[] buffer, int position ) { m_url = null; m_zone = (SecurityZone)BuiltInEvidenceHelper.GetIntFromCharArray(buffer, position); return position + 2; } public override String ToString() { return ToXml().ToString(); } // INormalizeForIsolatedStorage is not implemented for startup perf // equivalent to INormalizeForIsolatedStorage.Normalize() internal Object Normalize() { return s_names[(int)SecurityZone]; } } } // 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
- LocalizableAttribute.cs
- EntityContainerRelationshipSet.cs
- NameNode.cs
- XmlSchemaAnyAttribute.cs
- GeneralTransform2DTo3DTo2D.cs
- ToolZone.cs
- ZipIOExtraFieldPaddingElement.cs
- FontStretch.cs
- AssociatedControlConverter.cs
- Transform.cs
- TableLayout.cs
- OperationPerformanceCounters.cs
- ArrayWithOffset.cs
- sqlcontext.cs
- TypedServiceChannelBuilder.cs
- MailWebEventProvider.cs
- DataTableCollection.cs
- EntityPropertyMappingAttribute.cs
- _FtpDataStream.cs
- ParseHttpDate.cs
- AttributeProviderAttribute.cs
- Error.cs
- SchemaObjectWriter.cs
- NonBatchDirectoryCompiler.cs
- webeventbuffer.cs
- ThreadNeutralSemaphore.cs
- AssociationEndMember.cs
- RotateTransform3D.cs
- SharedUtils.cs
- listitem.cs
- WmlPhoneCallAdapter.cs
- SignalGate.cs
- SystemIPInterfaceProperties.cs
- WorkflowQueuingService.cs
- PopupRoot.cs
- IdentifierService.cs
- MultiBinding.cs
- DesignerValidatorAdapter.cs
- DeviceSpecificChoiceCollection.cs
- Array.cs
- Root.cs
- GlobalProxySelection.cs
- GridEntry.cs
- EntityDesignerBuildProvider.cs
- ScrollViewer.cs
- MissingSatelliteAssemblyException.cs
- MappedMetaModel.cs
- BuildManagerHost.cs
- Imaging.cs
- MobileTextWriter.cs
- Freezable.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- ProfileProvider.cs
- MessagePropertyFilter.cs
- BitmapEffectGeneralTransform.cs
- NodeLabelEditEvent.cs
- BinHexDecoder.cs
- TypeUtil.cs
- TreeNodeEventArgs.cs
- ExpressionPrefixAttribute.cs
- VirtualizedCellInfoCollection.cs
- XmlILModule.cs
- ChangesetResponse.cs
- WinEventQueueItem.cs
- Margins.cs
- invalidudtexception.cs
- TextBreakpoint.cs
- XmlHierarchicalEnumerable.cs
- TextDpi.cs
- MaterializeFromAtom.cs
- WebPartActionVerb.cs
- ParagraphResult.cs
- XsltSettings.cs
- SwitchElementsCollection.cs
- ResXFileRef.cs
- CompilerState.cs
- OletxCommittableTransaction.cs
- ClickablePoint.cs
- StrongName.cs
- TreePrinter.cs
- GPPOINTF.cs
- SqlDataSourceFilteringEventArgs.cs
- FixUpCollection.cs
- AuthenticatingEventArgs.cs
- AutomationPropertyChangedEventArgs.cs
- MemberNameValidator.cs
- BrushConverter.cs
- TemplateField.cs
- RegistrationServices.cs
- KnownTypesProvider.cs
- ReadOnlyDictionary.cs
- TripleDESCryptoServiceProvider.cs
- UnsafeNativeMethodsTablet.cs
- DataGridViewComboBoxCell.cs
- VisualTreeUtils.cs
- FacetDescriptionElement.cs
- Iis7Helper.cs
- SelectionUIHandler.cs
- TagPrefixCollection.cs
- AttachedPropertyMethodSelector.cs