Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Messaging / System / Messaging / AccessControlEntry.cs / 1305376 / AccessControlEntry.cs
using System; using System.Collections; using System.Runtime.InteropServices; using System.ComponentModel; using System.Text; using System.Messaging.Interop; namespace System.Messaging { ////// /// public class AccessControlEntry { //const int customRightsMask = 0x0000ffff; const StandardAccessRights standardRightsMask = (StandardAccessRights)0x001f0000; const GenericAccessRights genericRightsMask = unchecked((GenericAccessRights)0xf0000000); internal int accessFlags = 0; Trustee trustee = null; AccessControlEntryType entryType = AccessControlEntryType.Allow; ///[To be supplied.] ////// /// public AccessControlEntry() { } ///[To be supplied.] ////// /// public AccessControlEntry(Trustee trustee) { this.Trustee = trustee; } ///[To be supplied.] ////// /// public AccessControlEntry(Trustee trustee, GenericAccessRights genericAccessRights, StandardAccessRights standardAccessRights, AccessControlEntryType entryType) { this.GenericAccessRights = genericAccessRights; this.StandardAccessRights = standardAccessRights; this.Trustee = trustee; this.EntryType = entryType; } ///[To be supplied.] ////// /// public AccessControlEntryType EntryType { get { return entryType; } set { if (!ValidationUtility.ValidateAccessControlEntryType(value)) throw new InvalidEnumArgumentException("value", (int)value, typeof(AccessControlEntryType)); entryType = value; } } ///[To be supplied.] ////// /// protected int CustomAccessRights { get { return accessFlags; } set { accessFlags = value; } } ///[To be supplied.] ////// /// public GenericAccessRights GenericAccessRights { get { return (GenericAccessRights)accessFlags & genericRightsMask; } set { // make sure these flags really are genericAccessRights if ((value & genericRightsMask) != value) throw new InvalidEnumArgumentException("value", (int)value, typeof(GenericAccessRights)); accessFlags = (accessFlags & (int)~genericRightsMask) | (int)value; } } ///[To be supplied.] ////// /// public StandardAccessRights StandardAccessRights { get { return (StandardAccessRights)accessFlags & standardRightsMask; } set { // make sure these flags really are standardAccessRights if ((value & standardRightsMask) != value) throw new InvalidEnumArgumentException("value", (int)value, typeof(StandardAccessRights)); accessFlags = (accessFlags & (int)~standardRightsMask) | (int)value; } } ///[To be supplied.] ////// /// public Trustee Trustee { get { return trustee; } set { if (value == null) throw new ArgumentNullException("value"); trustee = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AccessibleObject.cs
- IdentityHolder.cs
- TraceLog.cs
- GlyphShapingProperties.cs
- StringStorage.cs
- UnaryNode.cs
- _FtpDataStream.cs
- RegisteredHiddenField.cs
- X509Certificate.cs
- ResolveMatchesCD1.cs
- SimpleApplicationHost.cs
- SqlNamer.cs
- IdentityManager.cs
- BindingContext.cs
- IntSecurity.cs
- AsyncContentLoadedEventArgs.cs
- SoapIgnoreAttribute.cs
- HtmlMeta.cs
- ActivitiesCollection.cs
- EntityDataSourceDataSelectionPanel.cs
- InfoCardRSAPKCS1KeyExchangeFormatter.cs
- ContextMenu.cs
- Normalization.cs
- EntitySetRetriever.cs
- RIPEMD160Managed.cs
- PackageDigitalSignatureManager.cs
- ProgressPage.cs
- CircleEase.cs
- EndPoint.cs
- SqlException.cs
- MsmqIntegrationElement.cs
- ContextMenu.cs
- DeclarationUpdate.cs
- ValidationSummary.cs
- ApplicationManager.cs
- KeyInterop.cs
- ProviderSettingsCollection.cs
- SharedStatics.cs
- SafePEFileHandle.cs
- XPathBinder.cs
- SelfIssuedAuthProofToken.cs
- UnsignedPublishLicense.cs
- SafeCryptoKeyHandle.cs
- FileReader.cs
- GridViewItemAutomationPeer.cs
- InfocardChannelParameter.cs
- CodeEventReferenceExpression.cs
- TemplateEditingService.cs
- Identity.cs
- EventMappingSettings.cs
- ColorAnimationBase.cs
- OutputCacheModule.cs
- Util.cs
- TextEvent.cs
- PolyQuadraticBezierSegment.cs
- SR.cs
- ConnectionPoint.cs
- SqlFlattener.cs
- SelectionWordBreaker.cs
- XPathDocumentBuilder.cs
- DataGridViewCellConverter.cs
- DataGridViewDataErrorEventArgs.cs
- HuffmanTree.cs
- MatchingStyle.cs
- BamlLocalizableResource.cs
- OrderByExpression.cs
- UserNameSecurityTokenParameters.cs
- TransactionFlowProperty.cs
- UnsafeNativeMethodsCLR.cs
- DynamicResourceExtensionConverter.cs
- NopReturnReader.cs
- MimeTypePropertyAttribute.cs
- HScrollProperties.cs
- DelimitedListTraceListener.cs
- RelationshipFixer.cs
- SatelliteContractVersionAttribute.cs
- MatrixCamera.cs
- HtmlInputButton.cs
- MachineKeyConverter.cs
- ValidationSummary.cs
- errorpatternmatcher.cs
- AsyncOperationManager.cs
- SQLByte.cs
- MergeExecutor.cs
- HtmlWindow.cs
- GridViewCommandEventArgs.cs
- Version.cs
- NotifyCollectionChangedEventArgs.cs
- TransactionScope.cs
- CryptoKeySecurity.cs
- TextInfo.cs
- ListView.cs
- PathSegment.cs
- CreateParams.cs
- EntityDataSourceSelectingEventArgs.cs
- ComplexTypeEmitter.cs
- PresentationAppDomainManager.cs
- DataBindEngine.cs
- SaveFileDialog.cs
- XmlBinaryReaderSession.cs