MembershipProvider.GetNumberOfUsersOnline Method (System.Web.Security)

Switch View :
ScriptFree
.NET Framework Class Library
MembershipProvider.GetNumberOfUsersOnline Method

Gets the number of users currently accessing the application.

Namespace:  System.Web.Security
Assembly:  System.Web.ApplicationServices (in System.Web.ApplicationServices.dll)
Syntax

Visual Basic
Public MustOverride Function GetNumberOfUsersOnline As Integer
C#
public abstract int GetNumberOfUsersOnline()
Visual C++
public:
virtual int GetNumberOfUsersOnline() abstract
F#
abstract GetNumberOfUsersOnline : unit -> int 

Return Value

Type: System.Int32
The number of users currently accessing the application.
Remarks

Returns an integer value that is the count of all the users in the data source where the LastActivityDate is greater than the current date and time minus the UserIsOnlineTimeWindow. The UserIsOnlineTimeWindow is a positive integer value specifying the number of minutes to use when determining whether a user is online.

Examples

For an example of a MembershipProvider implementation, see Implementing a Profile Provider.

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference

Other Resources