GetNumberOfInactiveProfiles Method
From MySQL Connector.Net
|
|
| MySQL Connector/Net |
| MySQLProfileProvider..::..GetNumberOfInactiveProfiles Method |
| MySQLProfileProvider Class See Also Send Feedback |
|
|
When overridden in a derived class, returns the number of profiles
in which the last activity date occurred on or before the specified
date.
Namespace: MySql.Web.Profile
Assembly: MySql.Web (in MySql.Web.dll) Version: 6.8.4.0
Syntax
| C# |
|---|
public override int GetNumberOfInactiveProfiles( ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate ) |
| Visual Basic |
|---|
Public Overrides Function GetNumberOfInactiveProfiles ( _ authenticationOption As ProfileAuthenticationOption, _ userInactiveSinceDate As DateTime _ ) As Integer |
| Visual C++ |
|---|
public: virtual int GetNumberOfInactiveProfiles( ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate ) override |
Parameters
- authenticationOption
- Type: System.Web.Profile..::..ProfileAuthenticationOption
One of the ProfileAuthenticationOption values, specifying whether anonymous, authenticated, or both types of profiles are returned.
- userInactiveSinceDate
- Type: System..::..DateTime
A DateTime that identifies which user profiles are considered inactive. If the LastActivityDate of a user profile occurs on or before this date and time, the profile is considered inactive.
Return Value
The number of profiles in which the last activity date occurred on or before the specified date.
See Also