Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UntrustedRecipientException.cs
- TraceProvider.cs
- ArrangedElementCollection.cs
- BulletedList.cs
- PermissionRequestEvidence.cs
- OleDbError.cs
- Binding.cs
- PerformanceCounterTraceRecord.cs
- LinqDataSourceInsertEventArgs.cs
- WebEventTraceProvider.cs
- OdbcTransaction.cs
- TabItemAutomationPeer.cs
- DecoderBestFitFallback.cs
- ObjectCloneHelper.cs
- SafeNativeMethodsOther.cs
- PageThemeParser.cs
- Exceptions.cs
- MetadataAssemblyHelper.cs
- XmlDocumentFragment.cs
- VisualStateManager.cs
- CellCreator.cs
- CompiledQueryCacheEntry.cs
- LayoutEngine.cs
- CheckoutException.cs
- Part.cs
- SqlCacheDependencyDatabaseCollection.cs
- TransactionChannelFaultConverter.cs
- ConnectionManagementSection.cs
- ExpressionParser.cs
- SessionStateUtil.cs
- SingleAnimation.cs
- BypassElementCollection.cs
- ModuleConfigurationInfo.cs
- WhiteSpaceTrimStringConverter.cs
- ReadOnlyNameValueCollection.cs
- Delegate.cs
- Expressions.cs
- FileDialogPermission.cs
- RequiredFieldValidator.cs
- RSAPKCS1KeyExchangeFormatter.cs
- TagElement.cs
- ReliableChannelBinder.cs
- Interop.cs
- AttachedPropertyMethodSelector.cs
- SpecialFolderEnumConverter.cs
- MetadataPropertyvalue.cs
- NotifyParentPropertyAttribute.cs
- ControlIdConverter.cs
- ParameterEditorUserControl.cs
- HttpRequestTraceRecord.cs
- AlphaSortedEnumConverter.cs
- HttpCookie.cs
- TreeViewItem.cs
- HyperLink.cs
- EntityDesignerDataSourceView.cs
- XmlSchemaCompilationSettings.cs
- DataFormat.cs
- Site.cs
- Menu.cs
- AttachmentCollection.cs
- URLIdentityPermission.cs
- XmlAttribute.cs
- Queue.cs
- DiscreteKeyFrames.cs
- ChtmlTextWriter.cs
- TemplateColumn.cs
- ServiceReference.cs
- BindStream.cs
- ObjectView.cs
- ImageField.cs
- StylusPointProperties.cs
- sqlcontext.cs
- TextElement.cs
- CriticalExceptions.cs
- SRGSCompiler.cs
- ExpressionVisitor.cs
- DiagnosticTrace.cs
- DetailsViewCommandEventArgs.cs
- IncrementalReadDecoders.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- Int32Rect.cs
- FlowDocumentFormatter.cs
- TableLayoutRowStyleCollection.cs
- SamlAuthorityBinding.cs
- StylusCaptureWithinProperty.cs
- ArraySegment.cs
- TreeViewHitTestInfo.cs
- DetailsViewCommandEventArgs.cs
- CompiledRegexRunnerFactory.cs
- PersistChildrenAttribute.cs
- XPathBinder.cs
- SettingsPropertyIsReadOnlyException.cs
- ToolboxItem.cs
- SqlConnectionFactory.cs
- WebSysDefaultValueAttribute.cs
- OperationFormatter.cs
- CallSite.cs
- XmlSchemaInclude.cs
- CalendarSelectionChangedEventArgs.cs
- ExpressionEditorAttribute.cs