Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Security / Policy / Site.cs / 1305376 / Site.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //[....] // // // Site.cs // // Site is an IIdentity representing internet sites. // using System; using System.Diagnostics.Contracts; using System.Globalization; using System.Security.Permissions; using System.Security.Util; namespace System.Security.Policy { [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public sealed class Site : EvidenceBase, IIdentityPermissionFactory { private SiteString m_name; public Site(String name) { if (name == null) throw new ArgumentNullException("name"); Contract.EndContractBlock(); m_name = new SiteString( name ); } private Site(SiteString name) { Contract.Assert(name != null); m_name = name; } public static Site CreateFromUrl( String url ) { return new Site(ParseSiteFromUrl(url)); } private static SiteString ParseSiteFromUrl( String name ) { URLString urlString = new URLString( name ); if (String.Compare( urlString.Scheme, "file", StringComparison.OrdinalIgnoreCase) == 0) throw new ArgumentException( Environment.GetResourceString( "Argument_InvalidSite" ) ); return new SiteString( new URLString( name ).Host ); } public String Name { get { return m_name.ToString(); } } internal SiteString GetSiteString() { return m_name; } public IPermission CreateIdentityPermission( Evidence evidence ) { return new SiteIdentityPermission( Name ); } public override bool Equals(Object o) { Site other = o as Site; if (other == null) { return false; } return String.Equals(Name, other.Name, StringComparison.OrdinalIgnoreCase); } public override int GetHashCode() { return Name.GetHashCode(); } public override EvidenceBase Clone() { return new Site(m_name); } public Object Copy() { return Clone(); } #if FEATURE_CAS_POLICY internal SecurityElement ToXml() { SecurityElement elem = new SecurityElement( "System.Security.Policy.Site" ); // 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. Contract.Assert( this.GetType().FullName.Equals( "System.Security.Policy.Site" ), "Class name changed!" ); elem.AddAttribute( "version", "1" ); if(m_name != null) elem.AddChild( new SecurityElement( "Name", m_name.ToString() ) ); return elem; } #endif // FEATURE_CAS_POLICY #if FEATURE_CAS_POLICY public override String ToString() { return ToXml().ToString(); } #endif // FEATURE_CAS_POLICY // INormalizeForIsolatedStorage is not implemented for startup perf // equivalent to INormalizeForIsolatedStorage.Normalize() internal Object Normalize() { return m_name.ToString().ToUpper(CultureInfo.InvariantCulture); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //[....] // // // Site.cs // // Site is an IIdentity representing internet sites. // using System; using System.Diagnostics.Contracts; using System.Globalization; using System.Security.Permissions; using System.Security.Util; namespace System.Security.Policy { [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public sealed class Site : EvidenceBase, IIdentityPermissionFactory { private SiteString m_name; public Site(String name) { if (name == null) throw new ArgumentNullException("name"); Contract.EndContractBlock(); m_name = new SiteString( name ); } private Site(SiteString name) { Contract.Assert(name != null); m_name = name; } public static Site CreateFromUrl( String url ) { return new Site(ParseSiteFromUrl(url)); } private static SiteString ParseSiteFromUrl( String name ) { URLString urlString = new URLString( name ); if (String.Compare( urlString.Scheme, "file", StringComparison.OrdinalIgnoreCase) == 0) throw new ArgumentException( Environment.GetResourceString( "Argument_InvalidSite" ) ); return new SiteString( new URLString( name ).Host ); } public String Name { get { return m_name.ToString(); } } internal SiteString GetSiteString() { return m_name; } public IPermission CreateIdentityPermission( Evidence evidence ) { return new SiteIdentityPermission( Name ); } public override bool Equals(Object o) { Site other = o as Site; if (other == null) { return false; } return String.Equals(Name, other.Name, StringComparison.OrdinalIgnoreCase); } public override int GetHashCode() { return Name.GetHashCode(); } public override EvidenceBase Clone() { return new Site(m_name); } public Object Copy() { return Clone(); } #if FEATURE_CAS_POLICY internal SecurityElement ToXml() { SecurityElement elem = new SecurityElement( "System.Security.Policy.Site" ); // 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. Contract.Assert( this.GetType().FullName.Equals( "System.Security.Policy.Site" ), "Class name changed!" ); elem.AddAttribute( "version", "1" ); if(m_name != null) elem.AddChild( new SecurityElement( "Name", m_name.ToString() ) ); return elem; } #endif // FEATURE_CAS_POLICY #if FEATURE_CAS_POLICY public override String ToString() { return ToXml().ToString(); } #endif // FEATURE_CAS_POLICY // INormalizeForIsolatedStorage is not implemented for startup perf // equivalent to INormalizeForIsolatedStorage.Normalize() internal Object Normalize() { return m_name.ToString().ToUpper(CultureInfo.InvariantCulture); } } } // 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
- XsdBuildProvider.cs
- SafeEventHandle.cs
- Utils.cs
- WindowsListViewSubItem.cs
- IncrementalHitTester.cs
- SqlDataSourceQueryEditorForm.cs
- CalendarTable.cs
- XmlNodeReader.cs
- securitycriticaldata.cs
- WindowsSecurityTokenAuthenticator.cs
- ErrorInfoXmlDocument.cs
- XslTransform.cs
- AncestorChangedEventArgs.cs
- XPathNavigatorReader.cs
- WmlSelectionListAdapter.cs
- Literal.cs
- ThreadStartException.cs
- ContentElementAutomationPeer.cs
- ConfigurationCollectionAttribute.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- FreezableOperations.cs
- HttpDebugHandler.cs
- DetailsViewUpdatedEventArgs.cs
- FloaterBaseParaClient.cs
- _MultipleConnectAsync.cs
- SearchForVirtualItemEventArgs.cs
- MessageSecurityException.cs
- BlurBitmapEffect.cs
- Int32AnimationBase.cs
- CodeTypeMemberCollection.cs
- BaseTreeIterator.cs
- MetadataUtil.cs
- StylusButtonEventArgs.cs
- ClientSettingsProvider.cs
- HostingEnvironmentWrapper.cs
- PartialToken.cs
- PolicyStatement.cs
- TypedTableBase.cs
- LicenseManager.cs
- PenThread.cs
- ConnectionProviderAttribute.cs
- ManagementEventWatcher.cs
- _AutoWebProxyScriptHelper.cs
- FrameworkElement.cs
- IntegerFacetDescriptionElement.cs
- BufferModesCollection.cs
- MarshalDirectiveException.cs
- ProcessModuleCollection.cs
- BindingContext.cs
- DesignerSerializationVisibilityAttribute.cs
- XmlDataSource.cs
- BinarySerializer.cs
- CharAnimationBase.cs
- EncoderExceptionFallback.cs
- DataSourceCache.cs
- RelationHandler.cs
- ConfigXmlComment.cs
- TextParaClient.cs
- sqlpipe.cs
- SystemFonts.cs
- ParamArrayAttribute.cs
- RunClient.cs
- PageRouteHandler.cs
- RtfControlWordInfo.cs
- ObjectListItem.cs
- Overlapped.cs
- SqlVersion.cs
- MediaCommands.cs
- Code.cs
- ExtensionQuery.cs
- ExpressionBuilder.cs
- Scripts.cs
- GuidConverter.cs
- WebConfigManager.cs
- GacUtil.cs
- ScrollViewerAutomationPeer.cs
- HtmlTableRow.cs
- SimpleWebHandlerParser.cs
- WebPartDeleteVerb.cs
- ApplicationSecurityManager.cs
- EditorOptionAttribute.cs
- MonthCalendar.cs
- LocationSectionRecord.cs
- SmiRequestExecutor.cs
- ColumnWidthChangedEvent.cs
- CopyOnWriteList.cs
- CharAnimationUsingKeyFrames.cs
- DeclarationUpdate.cs
- ColorTranslator.cs
- MenuItem.cs
- TableParagraph.cs
- PtsCache.cs
- FixedDSBuilder.cs
- EndpointAddressMessageFilterTable.cs
- MemoryMappedFileSecurity.cs
- RangeBase.cs
- CacheChildrenQuery.cs
- TagNameToTypeMapper.cs
- DbDataRecord.cs
- URLIdentityPermission.cs