Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / clr / src / BCL / System / Security / Policy / AllMembershipCondition.cs / 2 / AllMembershipCondition.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // AllMembershipCondition.cs // // Simple IMembershipCondition implementation that always passes // namespace System.Security.Policy { using System; using System.Security; using System.Security.Util; using System.Security.Permissions; using System.Collections; [Serializable] [System.Runtime.InteropServices.ComVisible(true)] sealed public class AllMembershipCondition : IMembershipCondition, IConstantMembershipCondition, IReportMatchMembershipCondition { public AllMembershipCondition() { } 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; return true; } public IMembershipCondition Copy() { return new AllMembershipCondition(); } public override String ToString() { return Environment.GetResourceString( "All_ToString" ); } 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.AllMembershipCondition" ); // 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.AllMembershipCondition" ), "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 AllMembershipCondition); } public override int GetHashCode() { return typeof( AllMembershipCondition ).GetHashCode(); } } } // 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
- counter.cs
- TextTreeInsertElementUndoUnit.cs
- LocalizabilityAttribute.cs
- BaseCAMarshaler.cs
- TransformationRules.cs
- MemberProjectionIndex.cs
- userdatakeys.cs
- SqlConnectionPoolGroupProviderInfo.cs
- RegistrySecurity.cs
- DesignerDataSchemaClass.cs
- TransformerInfo.cs
- InternalDispatchObject.cs
- ImpersonationContext.cs
- AssemblyName.cs
- OleDbCommand.cs
- StreamSecurityUpgradeAcceptorBase.cs
- SizeFConverter.cs
- SafeCryptoHandles.cs
- _NegoStream.cs
- BindingGraph.cs
- KnownTypes.cs
- ParenthesizePropertyNameAttribute.cs
- OperatingSystem.cs
- LinqTreeNodeEvaluator.cs
- AuthStoreRoleProvider.cs
- SoapUnknownHeader.cs
- Util.cs
- XmlEncodedRawTextWriter.cs
- CompositeScriptReference.cs
- XmlSortKey.cs
- XmlSchemaSequence.cs
- Separator.cs
- HwndStylusInputProvider.cs
- WebBrowserContainer.cs
- BinaryMessageFormatter.cs
- InputScopeNameConverter.cs
- SafeNativeMethodsOther.cs
- LocatorBase.cs
- Container.cs
- ItemCollection.cs
- KnownBoxes.cs
- ImageSourceValueSerializer.cs
- NameValueCollection.cs
- SqlConnectionString.cs
- DisplayNameAttribute.cs
- ContextMenu.cs
- WebHttpSecurityElement.cs
- ListenerConstants.cs
- BuildManagerHost.cs
- LinkButton.cs
- InfoCardSymmetricCrypto.cs
- FontStretches.cs
- TranslateTransform.cs
- WebCodeGenerator.cs
- AdapterDictionary.cs
- SEHException.cs
- HwndSource.cs
- Char.cs
- DataSourceGroupCollection.cs
- JavaScriptString.cs
- SafeLibraryHandle.cs
- processwaithandle.cs
- XmlAttributeOverrides.cs
- AttributeCollection.cs
- ImageListStreamer.cs
- ItemList.cs
- RightsManagementInformation.cs
- PeerName.cs
- FormViewPagerRow.cs
- SocketCache.cs
- OleDbParameterCollection.cs
- BaseCollection.cs
- DebuggerAttributes.cs
- StaticTextPointer.cs
- EventSinkHelperWriter.cs
- EditingMode.cs
- SqlDataSourceFilteringEventArgs.cs
- StandardToolWindows.cs
- CompilerCollection.cs
- EndpointAddressElementBase.cs
- FloaterParaClient.cs
- ADMembershipProvider.cs
- SafeEventHandle.cs
- Int32Rect.cs
- XmlSchemaDatatype.cs
- AutomationElement.cs
- ConsoleTraceListener.cs
- SchemaDeclBase.cs
- BaseValidator.cs
- TiffBitmapEncoder.cs
- WebPartTracker.cs
- DbConnectionPoolIdentity.cs
- DataColumnCollection.cs
- IfAction.cs
- PagePropertiesChangingEventArgs.cs
- QilXmlReader.cs
- newinstructionaction.cs
- ActivityInstance.cs
- AlphabeticalEnumConverter.cs
- EntityCommandDefinition.cs