Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / clr / src / BCL / System / Security / Policy / Site.cs / 2 / Site.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // // Site.cs // // Site is an IIdentity representing internet sites. // namespace System.Security.Policy { using System.Security.Util; using System.Globalization; using SiteIdentityPermission = System.Security.Permissions.SiteIdentityPermission; [Serializable] [System.Runtime.InteropServices.ComVisible(true)] sealed public class Site : IIdentityPermissionFactory, IBuiltInEvidence { private SiteString m_name; internal Site() { m_name = null; } public Site(String name) { if (name == null) throw new ArgumentNullException("name"); m_name = new SiteString( name ); } internal Site( byte[] id, String name ) { m_name = ParseSiteFromUrl( name ); } public static Site CreateFromUrl( String url ) { Site site = new Site(); site.m_name = ParseSiteFromUrl( url ); return site; } 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 { if (m_name != null) return m_name.ToString(); else return null; } } internal SiteString GetSiteString() { return m_name; } public IPermission CreateIdentityPermission( Evidence evidence ) { return new SiteIdentityPermission( Name ); } public override bool Equals(Object o) { if (o is Site) { Site s = (Site) o; if (Name == null) return (s.Name == null); return String.Compare( Name, s.Name, StringComparison.OrdinalIgnoreCase) == 0; } return false; } public override int GetHashCode() { String name = this.Name; if (name == null) return 0; else return name.GetHashCode(); } public Object Copy() { return new Site(this.Name); } internal SecurityElement ToXml() { SecurityElement elem = new SecurityElement( "System.Security.Policy.Site" ); // If you hit this assertt 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 assertt below. BCLDebug.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; } ///int IBuiltInEvidence.OutputToBuffer( char[] buffer, int position, bool verbose ) { buffer[position++] = BuiltInEvidenceHelper.idSite; String name = this.Name; int length = name.Length; if (verbose) { BuiltInEvidenceHelper.CopyIntToCharArray(length, buffer, position); position += 2; } name.CopyTo( 0, buffer, position, length ); return length + position; } /// int IBuiltInEvidence.GetRequiredSize(bool verbose) { if (verbose) return this.Name.Length + 3; else return this.Name.Length + 1; } /// int IBuiltInEvidence.InitFromBuffer( char[] buffer, int position) { int length = BuiltInEvidenceHelper.GetIntFromCharArray(buffer, position); position += 2; m_name = new SiteString( new String(buffer, position, length )); return position + length; } public override String ToString() { return ToXml().ToString(); } // 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TransformerTypeCollection.cs
- ExtendedPropertyCollection.cs
- TemplateBaseAction.cs
- DesignerProperties.cs
- TerminateWorkflow.cs
- SerializationAttributes.cs
- TextBreakpoint.cs
- SequenceFullException.cs
- TrackBarRenderer.cs
- DropSource.cs
- CharacterMetrics.cs
- SafeCryptoHandles.cs
- ContextMenuAutomationPeer.cs
- AttributeSetAction.cs
- ValueTypeFixupInfo.cs
- EventHandlerService.cs
- VirtualDirectoryMapping.cs
- FileVersionInfo.cs
- ListItem.cs
- ThreadNeutralSemaphore.cs
- PropertyRecord.cs
- CultureSpecificCharacterBufferRange.cs
- DiffuseMaterial.cs
- PrePrepareMethodAttribute.cs
- GeneralTransform3DGroup.cs
- TakeQueryOptionExpression.cs
- StsCommunicationException.cs
- X509IssuerSerialKeyIdentifierClause.cs
- HashHelper.cs
- FixedNode.cs
- HtmlValidationSummaryAdapter.cs
- PasswordRecovery.cs
- XpsS0ValidatingLoader.cs
- SimpleNameService.cs
- SystemColors.cs
- HtmlEmptyTagControlBuilder.cs
- Mutex.cs
- SafeNativeMethodsOther.cs
- SourceInterpreter.cs
- GridViewColumn.cs
- ScriptBehaviorDescriptor.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- BufferedGraphicsContext.cs
- ResourceExpressionEditor.cs
- XmlEncodedRawTextWriter.cs
- LocationReferenceEnvironment.cs
- Trace.cs
- StrokeFIndices.cs
- MatrixAnimationBase.cs
- MethodBody.cs
- AttributeAction.cs
- TriState.cs
- SessionEndedEventArgs.cs
- PerfService.cs
- DataBindingCollectionConverter.cs
- EntityContainerEntitySet.cs
- HttpCapabilitiesBase.cs
- ComplusEndpointConfigContainer.cs
- ToolStripComboBox.cs
- MobileControlsSection.cs
- RegionInfo.cs
- XmlParserContext.cs
- _PooledStream.cs
- RegistryPermission.cs
- TableItemPattern.cs
- CheckBox.cs
- ArrayList.cs
- Container.cs
- CheckBoxList.cs
- BinaryUtilClasses.cs
- FlowLayoutSettings.cs
- DataGridViewUtilities.cs
- AttachedAnnotationChangedEventArgs.cs
- SamlSerializer.cs
- ApplicationGesture.cs
- UTF7Encoding.cs
- invalidudtexception.cs
- BaseCodePageEncoding.cs
- ResourceContainer.cs
- UserControlParser.cs
- XmlLanguage.cs
- SingleKeyFrameCollection.cs
- SID.cs
- WrapperEqualityComparer.cs
- KeyedCollection.cs
- APCustomTypeDescriptor.cs
- ProcessRequestArgs.cs
- HotSpot.cs
- InvalidCommandTreeException.cs
- SettingsPropertyCollection.cs
- ValueProviderWrapper.cs
- DrawingAttributeSerializer.cs
- RelativeSource.cs
- PointValueSerializer.cs
- BaseResourcesBuildProvider.cs
- Executor.cs
- Group.cs
- InfoCardUIAgent.cs
- xsdvalidator.cs
- XpsViewerException.cs