Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / 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. //------------------------------------------------------------------------------ //// 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SizeConverter.cs
- BufferManager.cs
- EllipseGeometry.cs
- PowerStatus.cs
- SchemaDeclBase.cs
- XmlWrappingReader.cs
- FormViewDeletedEventArgs.cs
- DataListItemEventArgs.cs
- Membership.cs
- AnimationClockResource.cs
- HandlerBase.cs
- Misc.cs
- Number.cs
- PropertySourceInfo.cs
- InstalledVoice.cs
- SoapAttributeOverrides.cs
- Unit.cs
- OracleInternalConnection.cs
- DocumentViewerBase.cs
- CodeTypeDeclarationCollection.cs
- WindowsGraphicsWrapper.cs
- SafeNativeMethods.cs
- CacheOutputQuery.cs
- BitmapSource.cs
- FixUp.cs
- DoubleCollection.cs
- ToolStripSeparatorRenderEventArgs.cs
- PartialCachingControl.cs
- PermissionSetEnumerator.cs
- InkCanvas.cs
- ClonableStack.cs
- SystemSounds.cs
- DesignerMetadata.cs
- CryptoApi.cs
- XmlQueryOutput.cs
- KnownBoxes.cs
- SocketPermission.cs
- XmlBinaryWriter.cs
- DataControlCommands.cs
- AttachedAnnotation.cs
- ImageInfo.cs
- UnknownWrapper.cs
- FileUtil.cs
- StringReader.cs
- safePerfProviderHandle.cs
- StubHelpers.cs
- CreateSequence.cs
- SiteMembershipCondition.cs
- MSHTMLHost.cs
- HWStack.cs
- ConfigXmlReader.cs
- XmlObjectSerializerWriteContext.cs
- DiagnosticsElement.cs
- MeshGeometry3D.cs
- MultipleViewPattern.cs
- OdbcReferenceCollection.cs
- WebBodyFormatMessageProperty.cs
- DataStreams.cs
- BinaryCommonClasses.cs
- SafeEventLogWriteHandle.cs
- ViewStateModeByIdAttribute.cs
- RenderCapability.cs
- ListViewGroup.cs
- WebPartUtil.cs
- Inline.cs
- SqlCacheDependencySection.cs
- TransformDescriptor.cs
- SecurityCriticalDataForSet.cs
- TraceRecord.cs
- CookieParameter.cs
- ReliableOutputConnection.cs
- InstanceCreationEditor.cs
- CodeChecksumPragma.cs
- TreeNodeClickEventArgs.cs
- UriTemplateMatchException.cs
- StyleBamlTreeBuilder.cs
- EventLogPermissionEntry.cs
- PreparingEnlistment.cs
- FlowDocumentPage.cs
- Atom10FormatterFactory.cs
- WeakReadOnlyCollection.cs
- ClipboardProcessor.cs
- basecomparevalidator.cs
- _AutoWebProxyScriptHelper.cs
- HandleCollector.cs
- ParameterBuilder.cs
- HttpWebRequestElement.cs
- DataGridViewSortCompareEventArgs.cs
- MemoryRecordBuffer.cs
- XamlSerializerUtil.cs
- WebException.cs
- ImageDesigner.cs
- DocumentScope.cs
- SchemaTableOptionalColumn.cs
- FaultPropagationQuery.cs
- WebConfigurationFileMap.cs
- ConfigUtil.cs
- WebPartAuthorizationEventArgs.cs
- StringOutput.cs
- ReturnType.cs