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 / Profile / ProfileProvider.cs / 1 / ProfileProvider.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * ProfileProvider * * Copyright (c) 2002 Microsoft Corporation */ namespace System.Web.Profile { using System.Security.Principal; using System.Security.Permissions; using System.Collections; using System.Collections.Specialized; using System.Web.Configuration; using System.Web.Util; using System.Web.Security; using System.Web.Compilation; using System.Configuration; using System.Configuration.Provider; using System.Reflection; using System.CodeDom; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public abstract class ProfileProvider : SettingsProvider { public abstract int DeleteProfiles (ProfileInfoCollection profiles); public abstract int DeleteProfiles (string[] usernames); public abstract int DeleteInactiveProfiles (ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate); public abstract int GetNumberOfInactiveProfiles (ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate); public abstract ProfileInfoCollection GetAllProfiles (ProfileAuthenticationOption authenticationOption, int pageIndex, int pageSize, out int totalRecords); public abstract ProfileInfoCollection GetAllInactiveProfiles (ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate, int pageIndex, int pageSize, out int totalRecords); public abstract ProfileInfoCollection FindProfilesByUserName (ProfileAuthenticationOption authenticationOption, string usernameToMatch, int pageIndex, int pageSize, out int totalRecords); public abstract ProfileInfoCollection FindInactiveProfilesByUserName(ProfileAuthenticationOption authenticationOption, string usernameToMatch, DateTime userInactiveSinceDate, int pageIndex, int pageSize, out int totalRecords); } [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class ProfileProviderCollection : SettingsProviderCollection { public override void Add(ProviderBase provider) { if( provider == null ) { throw new ArgumentNullException( "provider" ); } if( !( provider is ProfileProvider ) ) { throw new ArgumentException(SR.GetString(SR.Provider_must_implement_type, typeof(ProfileProvider).ToString()), "provider"); } base.Add( provider ); } new public ProfileProvider this[string name] { get { return (ProfileProvider) base[name]; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * ProfileProvider * * Copyright (c) 2002 Microsoft Corporation */ namespace System.Web.Profile { using System.Security.Principal; using System.Security.Permissions; using System.Collections; using System.Collections.Specialized; using System.Web.Configuration; using System.Web.Util; using System.Web.Security; using System.Web.Compilation; using System.Configuration; using System.Configuration.Provider; using System.Reflection; using System.CodeDom; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public abstract class ProfileProvider : SettingsProvider { public abstract int DeleteProfiles (ProfileInfoCollection profiles); public abstract int DeleteProfiles (string[] usernames); public abstract int DeleteInactiveProfiles (ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate); public abstract int GetNumberOfInactiveProfiles (ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate); public abstract ProfileInfoCollection GetAllProfiles (ProfileAuthenticationOption authenticationOption, int pageIndex, int pageSize, out int totalRecords); public abstract ProfileInfoCollection GetAllInactiveProfiles (ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate, int pageIndex, int pageSize, out int totalRecords); public abstract ProfileInfoCollection FindProfilesByUserName (ProfileAuthenticationOption authenticationOption, string usernameToMatch, int pageIndex, int pageSize, out int totalRecords); public abstract ProfileInfoCollection FindInactiveProfilesByUserName(ProfileAuthenticationOption authenticationOption, string usernameToMatch, DateTime userInactiveSinceDate, int pageIndex, int pageSize, out int totalRecords); } [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class ProfileProviderCollection : SettingsProviderCollection { public override void Add(ProviderBase provider) { if( provider == null ) { throw new ArgumentNullException( "provider" ); } if( !( provider is ProfileProvider ) ) { throw new ArgumentException(SR.GetString(SR.Provider_must_implement_type, typeof(ProfileProvider).ToString()), "provider"); } base.Add( provider ); } new public ProfileProvider this[string name] { get { return (ProfileProvider) base[name]; } } } } // 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
- TypeInfo.cs
- Solver.cs
- BitVec.cs
- SafeLibraryHandle.cs
- ObjectViewFactory.cs
- ParameterInfo.cs
- AdapterDictionary.cs
- SchemaType.cs
- EncryptedHeader.cs
- WCFModelStrings.Designer.cs
- SmiRecordBuffer.cs
- FusionWrap.cs
- AlternateViewCollection.cs
- DbMetaDataCollectionNames.cs
- _AutoWebProxyScriptHelper.cs
- NopReturnReader.cs
- SqlCommandBuilder.cs
- IPAddressCollection.cs
- relpropertyhelper.cs
- CodeTryCatchFinallyStatement.cs
- MemberBinding.cs
- HyperlinkAutomationPeer.cs
- StateBag.cs
- ObjectItemNoOpAssemblyLoader.cs
- DelayLoadType.cs
- CursorInteropHelper.cs
- XPathSelfQuery.cs
- CategoriesDocumentFormatter.cs
- TreeNodeBinding.cs
- Util.cs
- MSAAWinEventWrap.cs
- BatchServiceHost.cs
- Activator.cs
- HtmlPhoneCallAdapter.cs
- Utilities.cs
- OSFeature.cs
- RemotingAttributes.cs
- BooleanProjectedSlot.cs
- ObjectStorage.cs
- WebPartZoneBase.cs
- ValidationSummary.cs
- DocumentApplicationDocumentViewer.cs
- SqlRecordBuffer.cs
- XmlRawWriter.cs
- ScalarConstant.cs
- RefType.cs
- XmlCompatibilityReader.cs
- ProcessActivityTreeOptions.cs
- TextureBrush.cs
- XamlGridLengthSerializer.cs
- BitmapPalette.cs
- DynamicActionMessageFilter.cs
- RightsManagementEncryptedStream.cs
- XPathAncestorIterator.cs
- CardSpacePolicyElement.cs
- FragmentQueryKB.cs
- MatrixCamera.cs
- ResourcePart.cs
- ProvideValueServiceProvider.cs
- XmlMemberMapping.cs
- AQNBuilder.cs
- TextAction.cs
- RelationshipSet.cs
- Page.cs
- PreparingEnlistment.cs
- _Events.cs
- versioninfo.cs
- CompilerScopeManager.cs
- TemplateParser.cs
- BufferedResponseStream.cs
- storepermissionattribute.cs
- shaperfactoryquerycacheentry.cs
- Animatable.cs
- ParameterElementCollection.cs
- QueryPageSettingsEventArgs.cs
- KoreanLunisolarCalendar.cs
- TranslateTransform3D.cs
- MessageEncodingBindingElementImporter.cs
- GridViewRowCollection.cs
- XomlCompilerResults.cs
- SystemParameters.cs
- XmlValidatingReaderImpl.cs
- SafeFileMappingHandle.cs
- QilVisitor.cs
- diagnosticsswitches.cs
- DataSourceCacheDurationConverter.cs
- DataGridItemCollection.cs
- HttpModulesSection.cs
- TaskSchedulerException.cs
- BinaryObjectReader.cs
- DesignerActionUI.cs
- ConstructorNeedsTagAttribute.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- ReadOnlyTernaryTree.cs
- CompiledQuery.cs
- HwndSource.cs
- DataGrid.cs
- MailBnfHelper.cs
- Group.cs
- WCFBuildProvider.cs