Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- DataBoundControl.cs
- HMACRIPEMD160.cs
- SmiMetaDataProperty.cs
- HotSpotCollection.cs
- BehaviorEditorPart.cs
- TreeNodeCollectionEditor.cs
- OracleCommandSet.cs
- OleDbDataAdapter.cs
- Hyperlink.cs
- AndMessageFilterTable.cs
- EntityCommandExecutionException.cs
- RecommendedAsConfigurableAttribute.cs
- Border.cs
- XslCompiledTransform.cs
- DataTable.cs
- GridViewRowPresenterBase.cs
- GenerateTemporaryAssemblyTask.cs
- XmlLanguage.cs
- InternalDispatchObject.cs
- COM2IDispatchConverter.cs
- SMSvcHost.cs
- SqlComparer.cs
- PartitionedStreamMerger.cs
- _AutoWebProxyScriptEngine.cs
- CharacterMetricsDictionary.cs
- BrowserCapabilitiesCompiler.cs
- CompositeControl.cs
- XmlTypeAttribute.cs
- PropertyToken.cs
- Util.cs
- TextMessageEncodingBindingElement.cs
- PerformanceCountersElement.cs
- PolicyStatement.cs
- TimelineGroup.cs
- FontSource.cs
- NumericUpDownAccelerationCollection.cs
- ReturnValue.cs
- StructuralCache.cs
- ExpressionStringBuilder.cs
- Command.cs
- Faults.cs
- DPCustomTypeDescriptor.cs
- MessageDescription.cs
- QuaternionConverter.cs
- Stopwatch.cs
- IsolatedStorageFilePermission.cs
- DBDataPermissionAttribute.cs
- ChangeToolStripParentVerb.cs
- ImageSource.cs
- httpstaticobjectscollection.cs
- WebPartVerbCollection.cs
- ExceptQueryOperator.cs
- HttpClientCertificate.cs
- DataRowCollection.cs
- Quaternion.cs
- UInt16Storage.cs
- OracleFactory.cs
- AnimationLayer.cs
- XmlSchemas.cs
- HttpResponseMessageProperty.cs
- TraceHelpers.cs
- ServiceDesigner.cs
- SymmetricSecurityProtocol.cs
- ReachVisualSerializerAsync.cs
- RemoteX509Token.cs
- EmbeddedObject.cs
- WebPartVerb.cs
- EventDescriptorCollection.cs
- MD5.cs
- DispatcherExceptionFilterEventArgs.cs
- XPathQilFactory.cs
- CompressedStack.cs
- WebPartConnectionsConfigureVerb.cs
- Frame.cs
- OperatorExpressions.cs
- RequiredFieldValidator.cs
- DbConnectionOptions.cs
- RawKeyboardInputReport.cs
- ErrorHandler.cs
- WeakRefEnumerator.cs
- SecurityElement.cs
- XmlQueryTypeFactory.cs
- DoubleLinkListEnumerator.cs
- AsymmetricAlgorithm.cs
- DataGrid.cs
- BinaryWriter.cs
- XmlTextReader.cs
- XhtmlBasicTextViewAdapter.cs
- DictionaryEntry.cs
- MergeFailedEvent.cs
- XamlBuildProvider.cs
- BaseAppDomainProtocolHandler.cs
- VisualBasicSettings.cs
- Thread.cs
- AspNetSynchronizationContext.cs
- XPathNodeInfoAtom.cs
- XmlSchemaAnnotation.cs
- ReflectionHelper.cs
- KeyTimeConverter.cs
- NavigationPropertySingletonExpression.cs