The FallbackDelay property gets or sets the time (in minutes) after which an array member will start using the other Configuration Storage server when the current Configuration Storage server is unavailable.
HRESULT put_FallbackDelay( long lFallbackDelay ); HRESULT get_FallbackDelay( long* plFallbackDelay );
Pointer to a variable that is set on return to a 32-bit integer specifying the time (in minutes) after which an array member will start using the other Configuration Storage server when the current Configuration Storage server is unavailable.
A 32-bit integer that specifies the time (in minutes) after which an array member will start using the other Configuration Storage server when the current Configuration Storage server is unavailable.
These property methods return S_OK if the call is successful; otherwise, they return an error code.
Property FallbackDelay As Long
A 32-bit integer that specifies the time (in minutes) after which an array member will start using the other Configuration Storage server when the current Configuration Storage server is unavailable.
Sub SetFallbackDelay(css, userName, domain, password, newValue) ' Declare the objects needed. Dim root ' The FPCLib.FPC root object Dim isaArray ' An FPCArray object Dim cssCn ' An FPCConfigurationStorageServerConnection object Dim currentValue ' An Integer ' Create the root object. Set root = CreateObject("FPC.Root") ' Connect to the Configuration Storage server. root.ConnectToConfigurationStorageServer css, userName, domain, password ' Get references to the array object ' and the connection object. Set isaArray = root.GetContainingArray() Set cssCn = isaArray.ConfigurationStorageServerConnection ' Change the value of the property if necessary. currentValue = cssCn.FallbackDelay WScript.Echo "Current fallback delay: " & currentValue If newValue <> currentValue Then cssCn.FallbackDelay = newValue WScript.Echo "Saving the new value " & newValue & " ..." isaArray.Save WScript.Echo "Done!" End If End Sub
This property is read/write. Its default value is 30 minutes, and its range of permissible values is from 1 through 99,999.
Client | Requires Windows Vista or Windows XP. |
---|---|
Server | Requires Windows Server 2008. |
Version | Requires Forefront Threat Management Gateway (TMG). |
IDL |
Declared in Msfpccom.idl. |
DLL |
Requires Msfpccom.dll. |
FPCConfigurationStorageServerConnection
Send comments about this topic to Microsoft
Build date: 11/30/2009
© 2008 Microsoft Corporation. All rights reserved.