UserNotFoundException Constructors
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
UserNotFoundException() |
Initializes a new instance of the UserNotFoundException class. Default constructor. |
UserNotFoundException(String) |
Initializes a new instance of the UserNotFoundException class. Constructor with screen/user name information. |
UserNotFoundException(String, Exception) |
Initializes a new instance of the UserNotFoundException class. Constructor with screen/user name information and inner exception. |
Initializes a new instance of the UserNotFoundException class. Default constructor.
public UserNotFoundException ();
Public Sub New ()
Applies to
Windows Community Toolkit 6.1.1
Produit | Versions |
---|---|
Windows Community Toolkit | 6.1.1 |
Initializes a new instance of the UserNotFoundException class. Constructor with screen/user name information.
public UserNotFoundException (string screenName);
new Microsoft.Toolkit.Services.UserNotFoundException : string -> Microsoft.Toolkit.Services.UserNotFoundException
Public Sub New (screenName As String)
Parameters
- screenName
- String
Name of user not found.
Applies to
Windows Community Toolkit 6.1.1
Produit | Versions |
---|---|
Windows Community Toolkit | 6.1.1 |
Initializes a new instance of the UserNotFoundException class. Constructor with screen/user name information and inner exception.
public UserNotFoundException (string screenName, Exception innerException);
new Microsoft.Toolkit.Services.UserNotFoundException : string * Exception -> Microsoft.Toolkit.Services.UserNotFoundException
Public Sub New (screenName As String, innerException As Exception)
Parameters
- screenName
- String
Name of user not found.
- innerException
- Exception
Reference to inner exception.
Applies to
Windows Community Toolkit 6.1.1
Produit | Versions |
---|---|
Windows Community Toolkit | 6.1.1 |