Package system.web.security
Class ActiveDirectoryMembershipProvider
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.configuration.provider.ProviderBase
-
- system.web.security.MembershipProvider
-
- system.web.security.ActiveDirectoryMembershipProvider
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class ActiveDirectoryMembershipProvider extends MembershipProvider
The base .NET class managing System.Web.Security.ActiveDirectoryMembershipProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Web.Security.ActiveDirectoryMembershipProvider
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
assemblyFullName
Fully assembly qualified name: System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.String
assemblyShortName
Assembly name: System.Webstatic java.lang.String
className
Qualified class name: System.Web.Security.ActiveDirectoryMembershipProviderstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description ActiveDirectoryMembershipProvider()
ActiveDirectoryMembershipProvider(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ActiveDirectoryMembershipProvider
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoActiveDirectoryMembershipProvider
, a cast assert is made to check if types are compatible.boolean
ChangePassword(java.lang.String username, java.lang.String oldPassword, java.lang.String newPassword)
boolean
ChangePasswordQuestionAndAnswer(java.lang.String username, java.lang.String password, java.lang.String newPasswordQuestion, java.lang.String newPasswordAnswer)
MembershipUser
CreateUser(java.lang.String username, java.lang.String password, java.lang.String email, java.lang.String passwordQuestion, java.lang.String passwordAnswer, boolean isApproved, NetObject providerUserKey, JCORefOut<MembershipCreateStatus> status)
boolean
DeleteUser(java.lang.String username, boolean deleteAllRelatedData)
MembershipUserCollection
FindUsersByEmail(java.lang.String emailToMatch, int pageIndex, int pageSize, JCORefOut<java.util.concurrent.atomic.AtomicInteger> totalRecords)
MembershipUserCollection
FindUsersByName(java.lang.String usernameToMatch, int pageIndex, int pageSize, JCORefOut<java.util.concurrent.atomic.AtomicInteger> totalRecords)
java.lang.String
GeneratePassword()
MembershipUserCollection
GetAllUsers(int pageIndex, int pageSize, JCORefOut<java.util.concurrent.atomic.AtomicInteger> totalRecords)
ActiveDirectoryConnectionProtection
getCurrentConnectionProtection()
boolean
getEnableSearchMethods()
java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Typeint
GetNumberOfUsersOnline()
java.lang.String
GetPassword(java.lang.String username, java.lang.String passwordAnswer)
int
getPasswordAnswerAttemptLockoutDuration()
MembershipUser
GetUser(java.lang.String username, boolean userIsOnline)
MembershipUser
GetUser(NetObject providerUserKey, boolean userIsOnline)
java.lang.String
GetUserNameByEmail(java.lang.String email)
void
Initialize(java.lang.String name, NameValueCollection config)
java.lang.String
ResetPassword(java.lang.String username, java.lang.String passwordAnswer)
void
setJCOInstance(JCObject instance)
boolean
UnlockUser(java.lang.String username)
void
UpdateUser(MembershipUser user)
boolean
ValidateUser(java.lang.String username, java.lang.String password)
-
Methods inherited from class system.web.security.MembershipProvider
addValidatingPassword, getApplicationName, getEnablePasswordReset, getEnablePasswordRetrieval, getMaxInvalidPasswordAttempts, getMinRequiredNonAlphanumericCharacters, getMinRequiredPasswordLength, getPasswordAttemptWindow, getPasswordFormat, getPasswordStrengthRegularExpression, getRequiresQuestionAndAnswer, getRequiresUniqueEmail, removeValidatingPassword, setApplicationName
-
Methods inherited from class system.configuration.provider.ProviderBase
getDescription, getName
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Web- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Web.Security.ActiveDirectoryMembershipProvider- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ActiveDirectoryMembershipProvider
public ActiveDirectoryMembershipProvider(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
ActiveDirectoryMembershipProvider
public ActiveDirectoryMembershipProvider() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, MissingMethodException, TargetInvocationException, FormatException
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classMembershipProvider
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classMembershipProvider
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classMembershipProvider
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classMembershipProvider
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classMembershipProvider
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classMembershipProvider
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static ActiveDirectoryMembershipProvider cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoActiveDirectoryMembershipProvider
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
ActiveDirectoryMembershipProvider
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
ChangePassword
public boolean ChangePassword(java.lang.String username, java.lang.String oldPassword, java.lang.String newPassword) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, NullReferenceException, MemberAccessException, PathTooLongException, OverflowException, OutOfMemoryException, RankException, SecurityException, RegexMatchTimeoutException, CryptographicException, HttpException, InvalidEnumArgumentException, AccessViolationException, ProviderException, MembershipPasswordException
- Overrides:
ChangePassword
in classMembershipProvider
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
NullReferenceException
MemberAccessException
PathTooLongException
OverflowException
OutOfMemoryException
RankException
SecurityException
RegexMatchTimeoutException
CryptographicException
HttpException
InvalidEnumArgumentException
AccessViolationException
ProviderException
MembershipPasswordException
-
ChangePasswordQuestionAndAnswer
public boolean ChangePasswordQuestionAndAnswer(java.lang.String username, java.lang.String password, java.lang.String newPasswordQuestion, java.lang.String newPasswordAnswer) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, ProviderException, OutOfMemoryException, CryptographicException, HttpException, InvalidEnumArgumentException, AccessViolationException, OverflowException, PlatformNotSupportedException, LdapException, DirectoryOperationException, DsmlInvalidDocumentException, DirectoryException
- Overrides:
ChangePasswordQuestionAndAnswer
in classMembershipProvider
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
ProviderException
OutOfMemoryException
CryptographicException
HttpException
InvalidEnumArgumentException
AccessViolationException
OverflowException
PlatformNotSupportedException
LdapException
DirectoryOperationException
DsmlInvalidDocumentException
DirectoryException
-
DeleteUser
public boolean DeleteUser(java.lang.String username, boolean deleteAllRelatedData) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, OutOfMemoryException, CryptographicException, HttpException, InvalidEnumArgumentException, AccessViolationException, ProviderException
- Overrides:
DeleteUser
in classMembershipProvider
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
OutOfMemoryException
CryptographicException
HttpException
InvalidEnumArgumentException
AccessViolationException
ProviderException
-
UnlockUser
public boolean UnlockUser(java.lang.String username) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, OutOfMemoryException, CryptographicException, HttpException, InvalidEnumArgumentException, AccessViolationException, ProviderException
- Overrides:
UnlockUser
in classMembershipProvider
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
OutOfMemoryException
CryptographicException
HttpException
InvalidEnumArgumentException
AccessViolationException
ProviderException
-
ValidateUser
public boolean ValidateUser(java.lang.String username, java.lang.String password) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, OutOfMemoryException, CryptographicException, NotSupportedException, HttpException, InvalidEnumArgumentException, AccessViolationException, ProviderException, PlatformNotSupportedException, LdapException, DirectoryOperationException, DirectoryException, ConfigurationException, ConfigurationErrorsException, OverflowException, AbandonedMutexException
- Overrides:
ValidateUser
in classMembershipProvider
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
OutOfMemoryException
CryptographicException
NotSupportedException
HttpException
InvalidEnumArgumentException
AccessViolationException
ProviderException
PlatformNotSupportedException
LdapException
DirectoryOperationException
DirectoryException
ConfigurationException
ConfigurationErrorsException
OverflowException
AbandonedMutexException
-
GetNumberOfUsersOnline
public int GetNumberOfUsersOnline() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
- Overrides:
GetNumberOfUsersOnline
in classMembershipProvider
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
-
GeneratePassword
public java.lang.String GeneratePassword() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
OverflowException
-
GetPassword
public java.lang.String GetPassword(java.lang.String username, java.lang.String passwordAnswer) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
- Overrides:
GetPassword
in classMembershipProvider
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
-
GetUserNameByEmail
public java.lang.String GetUserNameByEmail(java.lang.String email) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, OutOfMemoryException, CryptographicException, HttpException, InvalidEnumArgumentException, AccessViolationException, ProviderException
- Overrides:
GetUserNameByEmail
in classMembershipProvider
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
OutOfMemoryException
CryptographicException
HttpException
InvalidEnumArgumentException
AccessViolationException
ProviderException
-
ResetPassword
public java.lang.String ResetPassword(java.lang.String username, java.lang.String passwordAnswer) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, OutOfMemoryException, CryptographicException, HttpException, InvalidEnumArgumentException, AccessViolationException, ProviderException, OverflowException, MembershipPasswordException
- Overrides:
ResetPassword
in classMembershipProvider
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
OutOfMemoryException
CryptographicException
HttpException
InvalidEnumArgumentException
AccessViolationException
ProviderException
OverflowException
MembershipPasswordException
-
CreateUser
public MembershipUser CreateUser(java.lang.String username, java.lang.String password, java.lang.String email, java.lang.String passwordQuestion, java.lang.String passwordAnswer, boolean isApproved, NetObject providerUserKey, JCORefOut<MembershipCreateStatus> status) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, ProviderException, OutOfMemoryException, NullReferenceException, MemberAccessException, PathTooLongException, OverflowException, RankException, SecurityException, RegexMatchTimeoutException, CryptographicException, HttpException, FormatException, InvalidEnumArgumentException, AccessViolationException
- Overrides:
CreateUser
in classMembershipProvider
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
ProviderException
OutOfMemoryException
NullReferenceException
MemberAccessException
PathTooLongException
OverflowException
RankException
SecurityException
RegexMatchTimeoutException
CryptographicException
HttpException
FormatException
InvalidEnumArgumentException
AccessViolationException
-
GetUser
public MembershipUser GetUser(NetObject providerUserKey, boolean userIsOnline) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, OutOfMemoryException, CryptographicException, HttpException, InvalidEnumArgumentException, AccessViolationException, ProviderException, OverflowException
- Overrides:
GetUser
in classMembershipProvider
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
OutOfMemoryException
CryptographicException
HttpException
InvalidEnumArgumentException
AccessViolationException
ProviderException
OverflowException
-
GetUser
public MembershipUser GetUser(java.lang.String username, boolean userIsOnline) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, OutOfMemoryException, CryptographicException, HttpException, InvalidEnumArgumentException, AccessViolationException, ProviderException, OverflowException
- Overrides:
GetUser
in classMembershipProvider
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
OutOfMemoryException
CryptographicException
HttpException
InvalidEnumArgumentException
AccessViolationException
ProviderException
OverflowException
-
FindUsersByEmail
public MembershipUserCollection FindUsersByEmail(java.lang.String emailToMatch, int pageIndex, int pageSize, JCORefOut<java.util.concurrent.atomic.AtomicInteger> totalRecords) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, OutOfMemoryException, CryptographicException, HttpException, InvalidEnumArgumentException, AccessViolationException, ProviderException, OverflowException
- Overrides:
FindUsersByEmail
in classMembershipProvider
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
OutOfMemoryException
CryptographicException
HttpException
InvalidEnumArgumentException
AccessViolationException
ProviderException
OverflowException
-
FindUsersByName
public MembershipUserCollection FindUsersByName(java.lang.String usernameToMatch, int pageIndex, int pageSize, JCORefOut<java.util.concurrent.atomic.AtomicInteger> totalRecords) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, OutOfMemoryException, CryptographicException, HttpException, InvalidEnumArgumentException, AccessViolationException, ProviderException, OverflowException
- Overrides:
FindUsersByName
in classMembershipProvider
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
OutOfMemoryException
CryptographicException
HttpException
InvalidEnumArgumentException
AccessViolationException
ProviderException
OverflowException
-
GetAllUsers
public MembershipUserCollection GetAllUsers(int pageIndex, int pageSize, JCORefOut<java.util.concurrent.atomic.AtomicInteger> totalRecords) throws java.lang.Throwable
- Overrides:
GetAllUsers
in classMembershipProvider
- Throws:
java.lang.Throwable
-
Initialize
public void Initialize(java.lang.String name, NameValueCollection config) throws java.lang.Throwable, ArgumentException, SecurityException, ArgumentNullException, NotImplementedException, NotSupportedException, InvalidOperationException, MemberAccessException, TargetException, TargetParameterCountException, ObjectDisposedException, MissingMethodException, TargetInvocationException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, HttpException, PlatformNotSupportedException, IndexOutOfRangeException, NullReferenceException, KeyNotFoundException, OutOfMemoryException, Win32Exception, AccessViolationException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, ProviderException, HttpRequestValidationException, ConfigurationErrorsException, ConfigurationException, CryptographicException, InvalidCastException, RankException, FormatException, OverflowException, XPathException, DsmlInvalidDocumentException, DirectoryOperationException, LdapException, DirectoryException, InvalidEnumArgumentException, ActiveDirectoryOperationException, SocketException, ActiveDirectoryObjectNotFoundException
- Overrides:
Initialize
in classProviderBase
- Throws:
java.lang.Throwable
ArgumentException
SecurityException
ArgumentNullException
NotImplementedException
NotSupportedException
InvalidOperationException
MemberAccessException
TargetException
TargetParameterCountException
ObjectDisposedException
MissingMethodException
TargetInvocationException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
HttpException
PlatformNotSupportedException
IndexOutOfRangeException
NullReferenceException
KeyNotFoundException
OutOfMemoryException
Win32Exception
AccessViolationException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
ProviderException
HttpRequestValidationException
ConfigurationErrorsException
ConfigurationException
CryptographicException
InvalidCastException
RankException
FormatException
OverflowException
XPathException
DsmlInvalidDocumentException
DirectoryOperationException
LdapException
DirectoryException
InvalidEnumArgumentException
ActiveDirectoryOperationException
SocketException
ActiveDirectoryObjectNotFoundException
-
UpdateUser
public void UpdateUser(MembershipUser user) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, OutOfMemoryException, CryptographicException, HttpException, InvalidEnumArgumentException, AccessViolationException, ProviderException
- Overrides:
UpdateUser
in classMembershipProvider
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
OutOfMemoryException
CryptographicException
HttpException
InvalidEnumArgumentException
AccessViolationException
ProviderException
-
getEnableSearchMethods
public boolean getEnableSearchMethods() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
-
getPasswordAnswerAttemptLockoutDuration
public int getPasswordAnswerAttemptLockoutDuration() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
-
getCurrentConnectionProtection
public ActiveDirectoryConnectionProtection getCurrentConnectionProtection() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
-
-