Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / UI / WebControls / RoleGroupCollection.cs / 1 / RoleGroupCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System.Collections; using System.ComponentModel; using System.Security.Permissions; using System.Security.Principal; using System.Drawing.Design; using System.Web.Security; ////// Collection of RoleGroups. /// [ Editor("System.Web.UI.Design.WebControls.RoleGroupCollectionEditor, " + AssemblyRef.SystemDesign, typeof(UITypeEditor)) ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class RoleGroupCollection : CollectionBase { public RoleGroup this[int index] { get { return (RoleGroup)List[index]; } } public void Add(RoleGroup group) { List.Add(group); } public void CopyTo(RoleGroup[] array, int index) { List.CopyTo(array, index); } public bool Contains(RoleGroup group) { return List.Contains(group); } ////// The first RoleGroup that contains the user. /// public RoleGroup GetMatchingRoleGroup(IPrincipal user) { int index = GetMatchingRoleGroupInternal(user); if (index != -1) { return this[index]; } return null; } ////// Index of the first RoleGroup that contains the user. Internal because called from LoginView. /// internal int GetMatchingRoleGroupInternal(IPrincipal user) { if (user == null) { throw new ArgumentNullException("user"); } int i = 0; foreach (RoleGroup group in this) { if (group.ContainsUser(user)) { return i; } i++; } return -1; } public int IndexOf(RoleGroup group) { return List.IndexOf(group); } public void Insert(int index, RoleGroup group) { List.Insert(index, group); } protected override void OnValidate(object value) { base.OnValidate(value); if (!(value is RoleGroup)) { throw new ArgumentException(SR.GetString(SR.RoleGroupCollection_InvalidType), "value"); } } public void Remove(RoleGroup group) { int index = IndexOf(group); if (index >= 0) { List.RemoveAt(index); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System.Collections; using System.ComponentModel; using System.Security.Permissions; using System.Security.Principal; using System.Drawing.Design; using System.Web.Security; ////// Collection of RoleGroups. /// [ Editor("System.Web.UI.Design.WebControls.RoleGroupCollectionEditor, " + AssemblyRef.SystemDesign, typeof(UITypeEditor)) ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class RoleGroupCollection : CollectionBase { public RoleGroup this[int index] { get { return (RoleGroup)List[index]; } } public void Add(RoleGroup group) { List.Add(group); } public void CopyTo(RoleGroup[] array, int index) { List.CopyTo(array, index); } public bool Contains(RoleGroup group) { return List.Contains(group); } ////// The first RoleGroup that contains the user. /// public RoleGroup GetMatchingRoleGroup(IPrincipal user) { int index = GetMatchingRoleGroupInternal(user); if (index != -1) { return this[index]; } return null; } ////// Index of the first RoleGroup that contains the user. Internal because called from LoginView. /// internal int GetMatchingRoleGroupInternal(IPrincipal user) { if (user == null) { throw new ArgumentNullException("user"); } int i = 0; foreach (RoleGroup group in this) { if (group.ContainsUser(user)) { return i; } i++; } return -1; } public int IndexOf(RoleGroup group) { return List.IndexOf(group); } public void Insert(int index, RoleGroup group) { List.Insert(index, group); } protected override void OnValidate(object value) { base.OnValidate(value); if (!(value is RoleGroup)) { throw new ArgumentException(SR.GetString(SR.RoleGroupCollection_InvalidType), "value"); } } public void Remove(RoleGroup group) { int index = IndexOf(group); if (index >= 0) { List.RemoveAt(index); } } } } // 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
- WebColorConverter.cs
- ActiveXContainer.cs
- SQLDecimal.cs
- TimerElapsedEvenArgs.cs
- SemanticResultKey.cs
- MailAddress.cs
- DataListItemEventArgs.cs
- AuthorizationBehavior.cs
- MetafileHeaderWmf.cs
- MatrixCamera.cs
- __ConsoleStream.cs
- FileStream.cs
- CategoriesDocument.cs
- SecurityTokenSerializer.cs
- DoubleAnimationBase.cs
- Int64AnimationUsingKeyFrames.cs
- TemplateApplicationHelper.cs
- ConfigXmlAttribute.cs
- SafeHandle.cs
- ConfigurationCollectionAttribute.cs
- Models.cs
- DefaultProxySection.cs
- ModifierKeysConverter.cs
- Encoding.cs
- RegistryHandle.cs
- DataServices.cs
- TreeBuilder.cs
- LineSegment.cs
- _SingleItemRequestCache.cs
- Base64Stream.cs
- PathData.cs
- FormatException.cs
- ListViewDataItem.cs
- HistoryEventArgs.cs
- GridViewColumnHeaderAutomationPeer.cs
- HMACRIPEMD160.cs
- DirectoryInfo.cs
- ObjectQueryState.cs
- FlowLayoutSettings.cs
- BitmapEffectRenderDataResource.cs
- SchemaObjectWriter.cs
- EdmError.cs
- DisplayMemberTemplateSelector.cs
- MULTI_QI.cs
- ArraySubsetEnumerator.cs
- TextAction.cs
- BeginStoryboard.cs
- X509ScopedServiceCertificateElement.cs
- StringConverter.cs
- Route.cs
- ExtentJoinTreeNode.cs
- CalendarButtonAutomationPeer.cs
- ObjectConverter.cs
- DetailsViewInsertEventArgs.cs
- GZipStream.cs
- MobileControl.cs
- SqlUdtInfo.cs
- WsrmMessageInfo.cs
- Avt.cs
- MethodRental.cs
- WorkflowControlClient.cs
- QuadraticBezierSegment.cs
- ScrollBar.cs
- userdatakeys.cs
- AuthenticationService.cs
- InstanceData.cs
- streamingZipPartStream.cs
- BamlLocalizabilityResolver.cs
- BoundingRectTracker.cs
- DataSourceXmlSerializer.cs
- RequestCachePolicyConverter.cs
- ProfileSettings.cs
- RenderingBiasValidation.cs
- XsdDuration.cs
- RemotingConfigParser.cs
- EntityDesignerBuildProvider.cs
- Vector3DAnimationUsingKeyFrames.cs
- CalendarDataBindingHandler.cs
- FontWeightConverter.cs
- CurrentChangingEventManager.cs
- XsltFunctions.cs
- PointCollection.cs
- ConfigurationErrorsException.cs
- ConfigurationValidatorAttribute.cs
- FormViewRow.cs
- UdpMessageProperty.cs
- CrossAppDomainChannel.cs
- ReflectTypeDescriptionProvider.cs
- XmlWriter.cs
- ToolStripSettings.cs
- XPathNavigatorKeyComparer.cs
- AVElementHelper.cs
- Rotation3D.cs
- ImagingCache.cs
- DataControlExtensions.cs
- NGCSerializerAsync.cs
- FileChangesMonitor.cs
- ColumnResizeUndoUnit.cs
- DropDownButton.cs
- SafeHandles.cs