Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / clr / src / BCL / System / Security / Policy / ApplicationDirectoryMembershipCondition.cs / 1 / ApplicationDirectoryMembershipCondition.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // ApplicationDirectoryMembershipCondition.cs // // Implementation of membership condition for "application directories" // namespace System.Security.Policy { using System; using SecurityElement = System.Security.SecurityElement; using System.Security.Policy; using URLString = System.Security.Util.URLString; using System.Collections; [Serializable] [System.Runtime.InteropServices.ComVisible(true)] sealed public class ApplicationDirectoryMembershipCondition : IMembershipCondition, IConstantMembershipCondition, IReportMatchMembershipCondition { //------------------------------------------------------ // // PRIVATE STATE DATA // //----------------------------------------------------- //----------------------------------------------------- // // PUBLIC CONSTRUCTORS // //----------------------------------------------------- public ApplicationDirectoryMembershipCondition() { } //------------------------------------------------------ // // IMEMBERSHIPCONDITION IMPLEMENTATION // //----------------------------------------------------- public bool Check( Evidence evidence ) { object usedEvidence = null; return (this as IReportMatchMembershipCondition).Check(evidence, out usedEvidence); } bool IReportMatchMembershipCondition.Check(Evidence evidence, out object usedEvidence) { usedEvidence = null; if (evidence == null) return false; IEnumerator enumerator = evidence.GetHostEnumerator(); while (enumerator.MoveNext()) { ApplicationDirectory dir = enumerator.Current as ApplicationDirectory; if (dir != null) { IEnumerator innerEnumerator = evidence.GetHostEnumerator(); while (innerEnumerator.MoveNext()) { Url url = innerEnumerator.Current as Url; if (url != null) { // We need to add a wildcard at the end because IsSubsetOf // keys off of it. String appDir = dir.Directory; if (appDir != null && appDir.Length > 1) { if (appDir[appDir.Length-1] == '/') appDir += "*"; else appDir += "/*"; // comment URLString appDirString = new URLString(appDir); if (url.GetURLString().IsSubsetOf(appDirString)) { usedEvidence = dir; return true; } } } } } } return false; } public IMembershipCondition Copy() { return new ApplicationDirectoryMembershipCondition(); } public SecurityElement ToXml() { return ToXml( null ); } public void FromXml( SecurityElement e ) { FromXml( e, null ); } public SecurityElement ToXml( PolicyLevel level ) { SecurityElement root = new SecurityElement( "IMembershipCondition" ); System.Security.Util.XMLUtil.AddClassAttribute( root, this.GetType(), "System.Security.Policy.ApplicationDirectoryMembershipCondition" ); // 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.ApplicationDirectoryMembershipCondition" ), "Class name changed!" ); root.AddAttribute( "version", "1" ); return root; } public void FromXml( SecurityElement e, PolicyLevel level ) { if (e == null) throw new ArgumentNullException("e"); if (!e.Tag.Equals( "IMembershipCondition" )) { throw new ArgumentException( Environment.GetResourceString( "Argument_MembershipConditionElement" ) ); } } public override bool Equals( Object o ) { return (o is ApplicationDirectoryMembershipCondition); } public override int GetHashCode() { return typeof( ApplicationDirectoryMembershipCondition ).GetHashCode(); } public override String ToString() { return Environment.GetResourceString( "ApplicationDirectory_ToString" ); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // ApplicationDirectoryMembershipCondition.cs // // Implementation of membership condition for "application directories" // namespace System.Security.Policy { using System; using SecurityElement = System.Security.SecurityElement; using System.Security.Policy; using URLString = System.Security.Util.URLString; using System.Collections; [Serializable] [System.Runtime.InteropServices.ComVisible(true)] sealed public class ApplicationDirectoryMembershipCondition : IMembershipCondition, IConstantMembershipCondition, IReportMatchMembershipCondition { //------------------------------------------------------ // // PRIVATE STATE DATA // //----------------------------------------------------- //----------------------------------------------------- // // PUBLIC CONSTRUCTORS // //----------------------------------------------------- public ApplicationDirectoryMembershipCondition() { } //------------------------------------------------------ // // IMEMBERSHIPCONDITION IMPLEMENTATION // //----------------------------------------------------- public bool Check( Evidence evidence ) { object usedEvidence = null; return (this as IReportMatchMembershipCondition).Check(evidence, out usedEvidence); } bool IReportMatchMembershipCondition.Check(Evidence evidence, out object usedEvidence) { usedEvidence = null; if (evidence == null) return false; IEnumerator enumerator = evidence.GetHostEnumerator(); while (enumerator.MoveNext()) { ApplicationDirectory dir = enumerator.Current as ApplicationDirectory; if (dir != null) { IEnumerator innerEnumerator = evidence.GetHostEnumerator(); while (innerEnumerator.MoveNext()) { Url url = innerEnumerator.Current as Url; if (url != null) { // We need to add a wildcard at the end because IsSubsetOf // keys off of it. String appDir = dir.Directory; if (appDir != null && appDir.Length > 1) { if (appDir[appDir.Length-1] == '/') appDir += "*"; else appDir += "/*"; // comment URLString appDirString = new URLString(appDir); if (url.GetURLString().IsSubsetOf(appDirString)) { usedEvidence = dir; return true; } } } } } } return false; } public IMembershipCondition Copy() { return new ApplicationDirectoryMembershipCondition(); } public SecurityElement ToXml() { return ToXml( null ); } public void FromXml( SecurityElement e ) { FromXml( e, null ); } public SecurityElement ToXml( PolicyLevel level ) { SecurityElement root = new SecurityElement( "IMembershipCondition" ); System.Security.Util.XMLUtil.AddClassAttribute( root, this.GetType(), "System.Security.Policy.ApplicationDirectoryMembershipCondition" ); // 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.ApplicationDirectoryMembershipCondition" ), "Class name changed!" ); root.AddAttribute( "version", "1" ); return root; } public void FromXml( SecurityElement e, PolicyLevel level ) { if (e == null) throw new ArgumentNullException("e"); if (!e.Tag.Equals( "IMembershipCondition" )) { throw new ArgumentException( Environment.GetResourceString( "Argument_MembershipConditionElement" ) ); } } public override bool Equals( Object o ) { return (o is ApplicationDirectoryMembershipCondition); } public override int GetHashCode() { return typeof( ApplicationDirectoryMembershipCondition ).GetHashCode(); } public override String ToString() { return Environment.GetResourceString( "ApplicationDirectory_ToString" ); } } } // 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
- TdsParserStaticMethods.cs
- SessionPageStatePersister.cs
- NameTable.cs
- XamlInt32CollectionSerializer.cs
- BinaryNode.cs
- IndexedWhereQueryOperator.cs
- DetailsViewDeletedEventArgs.cs
- EntityDataSourceViewSchema.cs
- SmiEventStream.cs
- ContextMenuAutomationPeer.cs
- SqlDataSourceFilteringEventArgs.cs
- XpsImage.cs
- UIElementCollection.cs
- AdornerHitTestResult.cs
- DataSetViewSchema.cs
- FloaterBaseParagraph.cs
- SplitterPanelDesigner.cs
- RMEnrollmentPage3.cs
- FirstMatchCodeGroup.cs
- ContentControl.cs
- PlacementWorkspace.cs
- SystemIPGlobalStatistics.cs
- HttpRawResponse.cs
- ReadOnlyObservableCollection.cs
- MailDefinition.cs
- BlobPersonalizationState.cs
- DistinctQueryOperator.cs
- WebRequestModuleElement.cs
- MultipleViewPattern.cs
- BaseCAMarshaler.cs
- FormViewUpdateEventArgs.cs
- MimeReturn.cs
- BindStream.cs
- EntityDataSourceWrapperCollection.cs
- FormView.cs
- StylusEventArgs.cs
- StringConcat.cs
- BypassElement.cs
- XmlTextWriter.cs
- PositiveTimeSpanValidatorAttribute.cs
- ThemeInfoAttribute.cs
- GridViewSortEventArgs.cs
- DataGridViewCellStyleConverter.cs
- IpcChannelHelper.cs
- VisualBrush.cs
- WebBrowserHelper.cs
- PermissionAttributes.cs
- regiisutil.cs
- AppSettingsExpressionBuilder.cs
- Int32AnimationUsingKeyFrames.cs
- UndoEngine.cs
- WebServiceParameterData.cs
- XmlObjectSerializerReadContext.cs
- datacache.cs
- ResolvePPIDRequest.cs
- httpstaticobjectscollection.cs
- SamlConstants.cs
- BitmapEffectCollection.cs
- QueryCacheEntry.cs
- HttpContextServiceHost.cs
- TextViewSelectionProcessor.cs
- SourceFileBuildProvider.cs
- ADConnectionHelper.cs
- GlyphElement.cs
- PropertyGroupDescription.cs
- ToolboxComponentsCreatedEventArgs.cs
- ClientRuntimeConfig.cs
- DataGridColumnStyleMappingNameEditor.cs
- TrackingProfile.cs
- DataGridViewLinkColumn.cs
- DataColumn.cs
- updateconfighost.cs
- Context.cs
- HttpWriter.cs
- FormsAuthenticationTicket.cs
- PeerInputChannel.cs
- Content.cs
- ObjectDataProvider.cs
- ProgressiveCrcCalculatingStream.cs
- ManagementObjectCollection.cs
- DispatchChannelSink.cs
- WebPartCancelEventArgs.cs
- SqlResolver.cs
- UpdatePanelControlTrigger.cs
- OleDbCommandBuilder.cs
- PropVariant.cs
- EnumConverter.cs
- CorrelationManager.cs
- ClrPerspective.cs
- Partitioner.cs
- ContentFileHelper.cs
- infer.cs
- TimeSpanStorage.cs
- EntityTransaction.cs
- IntSecurity.cs
- SqlTypeConverter.cs
- DataGridViewComboBoxColumn.cs
- AvtEvent.cs
- SHA512.cs
- DescendantBaseQuery.cs