Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- ApplicationSecurityInfo.cs
- CompositeCollection.cs
- HttpListenerException.cs
- FormsAuthentication.cs
- FrameworkContentElement.cs
- SoapCommonClasses.cs
- Base64Stream.cs
- SelectionEditingBehavior.cs
- DbConnectionStringCommon.cs
- HtmlHistory.cs
- EncryptedData.cs
- VirtualDirectoryMapping.cs
- _HelperAsyncResults.cs
- LOSFormatter.cs
- XmlAtomicValue.cs
- DeferredSelectedIndexReference.cs
- XslTransformFileEditor.cs
- mil_commands.cs
- QilSortKey.cs
- ViewManager.cs
- SettingsPropertyValue.cs
- ColorConvertedBitmap.cs
- Expander.cs
- MenuItem.cs
- OraclePermission.cs
- EncryptedXml.cs
- CompleteWizardStep.cs
- ObjectDataSourceEventArgs.cs
- RegexEditorDialog.cs
- PropertyNames.cs
- PagerSettings.cs
- SHA512CryptoServiceProvider.cs
- WebPartsPersonalization.cs
- XmlNamedNodeMap.cs
- SqlConnectionFactory.cs
- Events.cs
- PointAnimationBase.cs
- ToolStripDropDownButton.cs
- ObjectPersistData.cs
- unsafeIndexingFilterStream.cs
- CookielessHelper.cs
- NamespaceEmitter.cs
- LabelDesigner.cs
- XmlTextReaderImpl.cs
- Completion.cs
- _KerberosClient.cs
- Light.cs
- LiteralControl.cs
- PerformanceCounterPermissionEntry.cs
- CannotUnloadAppDomainException.cs
- UnsignedPublishLicense.cs
- DodSequenceMerge.cs
- TrackingMemoryStreamFactory.cs
- DataListItemEventArgs.cs
- ArgumentValidation.cs
- LoadRetryHandler.cs
- DataSourceControl.cs
- Utilities.cs
- Grid.cs
- SafeEventLogWriteHandle.cs
- SiteMapSection.cs
- EdmItemError.cs
- TableDetailsCollection.cs
- EmptyEnumerator.cs
- RuntimeHelpers.cs
- HttpResponse.cs
- ResourceDisplayNameAttribute.cs
- WindowsSpinner.cs
- Decorator.cs
- DefaultValidator.cs
- OracleEncoding.cs
- ErrorWrapper.cs
- DocComment.cs
- DoubleUtil.cs
- SymbolTable.cs
- HandlerBase.cs
- Marshal.cs
- TextTrailingWordEllipsis.cs
- TemplateField.cs
- Span.cs
- OdbcDataAdapter.cs
- ShadowGlyph.cs
- SubstitutionList.cs
- LineBreak.cs
- NumberFunctions.cs
- XmlSchemaComplexContentExtension.cs
- MultiBinding.cs
- WindowInteropHelper.cs
- TaskFormBase.cs
- PasswordDeriveBytes.cs
- Select.cs
- DataGridBoolColumn.cs
- FileBasedResourceGroveler.cs
- CodeActivityContext.cs
- InputProviderSite.cs
- ListBindingHelper.cs
- Byte.cs
- Rule.cs
- BamlBinaryWriter.cs
- cookiecollection.cs