Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Security / Policy / URL.cs / 1305376 / URL.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //[....] // // // Url.cs // // Url is an IIdentity representing url internet sites. // namespace System.Security.Policy { using System.IO; using System.Security.Util; using UrlIdentityPermission = System.Security.Permissions.UrlIdentityPermission; using System.Runtime.Serialization; using System.Diagnostics.Contracts; [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public sealed class Url : EvidenceBase, IIdentityPermissionFactory { private URLString m_url; internal Url( String name, bool parsed ) { if (name == null) throw new ArgumentNullException( "name" ); Contract.EndContractBlock(); m_url = new URLString( name, parsed ); } public Url( String name ) { if (name == null) throw new ArgumentNullException( "name" ); Contract.EndContractBlock(); m_url = new URLString( name ); } private Url(Url url) { Contract.Assert(url != null); m_url = url.m_url; } public String Value { get { return m_url.ToString(); } } internal URLString GetURLString() { return m_url; } public IPermission CreateIdentityPermission( Evidence evidence ) { return new UrlIdentityPermission( m_url ); } public override bool Equals(Object o) { Url other = o as Url; if (other == null) { return false; } return other.m_url.Equals(m_url); } public override int GetHashCode() { return this.m_url.GetHashCode(); } public override EvidenceBase Clone() { return new Url(this); } public Object Copy() { return Clone(); } #if FEATURE_CAS_POLICY internal SecurityElement ToXml() { SecurityElement root = new SecurityElement( "System.Security.Policy.Url" ); // 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.Url" ), "Class name changed!" ); root.AddAttribute( "version", "1" ); if (m_url != null) root.AddChild( new SecurityElement( "Url", m_url.ToString() ) ); return root; } 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_url.NormalizeUrl(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //[....] // // // Url.cs // // Url is an IIdentity representing url internet sites. // namespace System.Security.Policy { using System.IO; using System.Security.Util; using UrlIdentityPermission = System.Security.Permissions.UrlIdentityPermission; using System.Runtime.Serialization; using System.Diagnostics.Contracts; [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public sealed class Url : EvidenceBase, IIdentityPermissionFactory { private URLString m_url; internal Url( String name, bool parsed ) { if (name == null) throw new ArgumentNullException( "name" ); Contract.EndContractBlock(); m_url = new URLString( name, parsed ); } public Url( String name ) { if (name == null) throw new ArgumentNullException( "name" ); Contract.EndContractBlock(); m_url = new URLString( name ); } private Url(Url url) { Contract.Assert(url != null); m_url = url.m_url; } public String Value { get { return m_url.ToString(); } } internal URLString GetURLString() { return m_url; } public IPermission CreateIdentityPermission( Evidence evidence ) { return new UrlIdentityPermission( m_url ); } public override bool Equals(Object o) { Url other = o as Url; if (other == null) { return false; } return other.m_url.Equals(m_url); } public override int GetHashCode() { return this.m_url.GetHashCode(); } public override EvidenceBase Clone() { return new Url(this); } public Object Copy() { return Clone(); } #if FEATURE_CAS_POLICY internal SecurityElement ToXml() { SecurityElement root = new SecurityElement( "System.Security.Policy.Url" ); // 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.Url" ), "Class name changed!" ); root.AddAttribute( "version", "1" ); if (m_url != null) root.AddChild( new SecurityElement( "Url", m_url.ToString() ) ); return root; } 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_url.NormalizeUrl(); } } } // 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
- Errors.cs
- MediaScriptCommandRoutedEventArgs.cs
- AttachedPropertyMethodSelector.cs
- ProcessHost.cs
- BinaryFormatterWriter.cs
- WebPartEditVerb.cs
- MultiSelector.cs
- StorageMappingItemLoader.cs
- VarRemapper.cs
- PersistenceTypeAttribute.cs
- ServiceParser.cs
- WebServiceReceive.cs
- CompatibleComparer.cs
- controlskin.cs
- XmlNodeWriter.cs
- _ShellExpression.cs
- HitTestWithGeometryDrawingContextWalker.cs
- WsdlBuildProvider.cs
- ParentControlDesigner.cs
- CmsInterop.cs
- Soap.cs
- ProcessProtocolHandler.cs
- SiteMapDataSourceView.cs
- TickBar.cs
- HttpModuleAction.cs
- PageCopyCount.cs
- MarkupWriter.cs
- TrustSection.cs
- ListViewItemSelectionChangedEvent.cs
- RuleRef.cs
- ErrorHandlingAcceptor.cs
- RuleSettingsCollection.cs
- OleAutBinder.cs
- ClientType.cs
- MeshGeometry3D.cs
- XmlAnyElementAttributes.cs
- FacetChecker.cs
- UrlEncodedParameterWriter.cs
- PropertyGeneratedEventArgs.cs
- DropSourceBehavior.cs
- SerializationInfo.cs
- TypeDescriptorFilterService.cs
- ThreadAttributes.cs
- DbExpressionVisitor_TResultType.cs
- WebDisplayNameAttribute.cs
- MenuItem.cs
- Int16AnimationUsingKeyFrames.cs
- ProcessRequestArgs.cs
- Atom10FeedFormatter.cs
- IPipelineRuntime.cs
- StaticSiteMapProvider.cs
- BitmapEffectInputData.cs
- HMACMD5.cs
- DataGridViewCell.cs
- DeobfuscatingStream.cs
- Classification.cs
- AuthenticateEventArgs.cs
- IndexingContentUnit.cs
- SignatureSummaryDialog.cs
- TemplateControlParser.cs
- PngBitmapEncoder.cs
- SpotLight.cs
- CellRelation.cs
- UniqueIdentifierService.cs
- WindowsFormsSynchronizationContext.cs
- DataGridViewRowHeaderCell.cs
- Int32CollectionValueSerializer.cs
- Token.cs
- DataGridViewCellMouseEventArgs.cs
- TableCellsCollectionEditor.cs
- PreloadedPackages.cs
- TransformGroup.cs
- AnnotationStore.cs
- InitializingNewItemEventArgs.cs
- StatusBarItemAutomationPeer.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- XomlCompilerParameters.cs
- MiniModule.cs
- FixedDSBuilder.cs
- SectionInput.cs
- WebPartConnectionsConfigureVerb.cs
- NetworkStream.cs
- HttpConfigurationSystem.cs
- RegexRunnerFactory.cs
- ViewBox.cs
- DocumentReference.cs
- DataGridViewTextBoxCell.cs
- TextViewBase.cs
- InvokeProviderWrapper.cs
- SqlUDTStorage.cs
- WindowsGraphicsCacheManager.cs
- LinqDataSourceDeleteEventArgs.cs
- WindowsAuthenticationModule.cs
- TranslateTransform.cs
- CalendarTable.cs
- SHA256Managed.cs
- FunctionUpdateCommand.cs
- BaseServiceProvider.cs
- SQLDateTime.cs
- AsymmetricKeyExchangeDeformatter.cs