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
- RegexWorker.cs
- Vector3DCollectionConverter.cs
- Soap.cs
- StretchValidation.cs
- Size3DConverter.cs
- ReadOnlyObservableCollection.cs
- WebPartEditorApplyVerb.cs
- ErrorHandler.cs
- XmlLanguage.cs
- AccessViolationException.cs
- FrameworkPropertyMetadata.cs
- TreeViewItem.cs
- Row.cs
- GetIndexBinder.cs
- VectorAnimationBase.cs
- EmissiveMaterial.cs
- MimeParameters.cs
- MSG.cs
- DesignerView.cs
- VarRemapper.cs
- SerialPinChanges.cs
- PhoneCallDesigner.cs
- OleDbSchemaGuid.cs
- AmbientLight.cs
- CrossContextChannel.cs
- DrawingServices.cs
- ApplicationTrust.cs
- DomNameTable.cs
- XmlQueryRuntime.cs
- ViewBase.cs
- BaseHashHelper.cs
- OLEDB_Enum.cs
- AnonymousIdentificationSection.cs
- WindowsSlider.cs
- WebEventTraceProvider.cs
- RequestSecurityTokenForGetBrowserToken.cs
- XmlILIndex.cs
- SrgsElementFactoryCompiler.cs
- HyperLinkStyle.cs
- ConnectionsZoneAutoFormat.cs
- ColorContext.cs
- XmlILAnnotation.cs
- CompilationUnit.cs
- DSASignatureFormatter.cs
- XamlReaderHelper.cs
- SerialPinChanges.cs
- DataViewSettingCollection.cs
- IdentityHolder.cs
- ForceCopyBuildProvider.cs
- ContentPresenter.cs
- ListItemCollection.cs
- MessageAction.cs
- httpserverutility.cs
- ChannelParameterCollection.cs
- ApplicationFileCodeDomTreeGenerator.cs
- UidManager.cs
- SafeLibraryHandle.cs
- ConfigurationLocation.cs
- MenuItem.cs
- LeftCellWrapper.cs
- TemplateControlCodeDomTreeGenerator.cs
- COM2TypeInfoProcessor.cs
- DescriptionAttribute.cs
- TdsEnums.cs
- CalloutQueueItem.cs
- SqlUDTStorage.cs
- ButtonBaseAdapter.cs
- MetafileHeader.cs
- BufferModesCollection.cs
- InkSerializer.cs
- PackWebResponse.cs
- GroupItemAutomationPeer.cs
- BamlMapTable.cs
- Cell.cs
- AttachedPropertyBrowsableAttribute.cs
- CheckedPointers.cs
- UnSafeCharBuffer.cs
- SettingsSection.cs
- HtmlInputImage.cs
- Crypto.cs
- DesigntimeLicenseContextSerializer.cs
- RsaSecurityTokenAuthenticator.cs
- SpStreamWrapper.cs
- Label.cs
- WpfMemberInvoker.cs
- RestHandler.cs
- RequestDescription.cs
- WebEventCodes.cs
- ResourceManager.cs
- ModuleElement.cs
- GridViewAutoFormat.cs
- Accessible.cs
- Ref.cs
- TextRunProperties.cs
- SocketException.cs
- DetailsViewInsertEventArgs.cs
- ArgumentOutOfRangeException.cs
- EdmProviderManifest.cs
- ProfileSettings.cs
- sqlmetadatafactory.cs