|
SecurityProviderCacheFlush(String, Boolean) Method
|
Removes any cached information about the user with the given username.
Namespace: GSF.SecurityAssembly: GSF.Security (in GSF.Security.dll) Version: 2.4.205-beta
Syntax public static void Flush(
string username,
bool useAlternate = false
)
Public Shared Sub Flush (
username As String,
Optional useAlternate As Boolean = false
)
public:
static void Flush(
String^ username,
bool useAlternate = false
)
static member Flush :
username : string *
?useAlternate : bool
(* Defaults:
let _useAlternate = defaultArg useAlternate false
*)
-> unit
GSF.Security.SecurityProviderCache.Flush = function(username, useAlternate);
View SourceParameters
- username String
- The username of the user to be flushed from the cache.
- useAlternate Boolean (Optional)
- Indicates whether the alternate ISecurityProvider should be used.
See Also