|
SecurityProviderCacheAutoRefresh(ISecurityProvider, Boolean) Method
|
Adds the given provider to the collection of providers being automatically refreshed on the user cache timeout interval.
Namespace: GSF.SecurityAssembly: GSF.Security (in GSF.Security.dll) Version: 2.4.248-beta
Syntaxpublic static void AutoRefresh(
ISecurityProvider provider,
bool useAlternate = false
)
Public Shared Sub AutoRefresh (
provider As ISecurityProvider,
Optional useAlternate As Boolean = false
)
public:
static void AutoRefresh(
ISecurityProvider^ provider,
bool useAlternate = false
)
static member AutoRefresh :
provider : ISecurityProvider *
?useAlternate : bool
(* Defaults:
let _useAlternate = defaultArg useAlternate false
*)
-> unit
GSF.Security.SecurityProviderCache.AutoRefresh = function(provider, useAlternate);
View SourceParameters
- provider ISecurityProvider
- The security provider to be cached.
- useAlternate Boolean (Optional)
- Indicates whether the alternate ISecurityProvider should be used.
See Also