User Services

The mmUserManager object provides user services for your application. It allows you to authenticate application users and works for both Windows and Web applications.

Referencing the User Manager Object

To reference this object from anywhere in your application, use the static UserMgr property of the mmAppBase class.

For example, in C#:

// Use namespace at the top of your source code file
using OakLeaf.MM.Main;
bool authenticated = mmAppBase.UserMgr.AuthenticateUser("Alexander""12345");

And in VB .NET:

'' Import namespace at the top of your source code file
Imports OakLeaf.MM.Main
Dim authenticated = mmAppBase.UserMgr.AuthenticateUser("Alexander""12345")

© (c) 2026 Oak Leaf Enterprises, Inc., 1996-2026 • Updated: 05/01/18
Comment or report problem with topic