Microsoft Internet Security and Acceleration Server 2004 SDK

Retries Property of IFPCRadiusServers[C++]

FPCRadiusServers.Retries [Visual Basic]

[C++]

The Retries property gets or sets the number of times an authentication request is retried. RADIUS servers handle an authentication request in the order determined by the Order property of each of the FPCRadiusServer objects in the collection. If the first server in the collection is unavailable, the request is forwarded to the second server, and so on. The number of times authentication is tried on each RADIUS server before the request is forwarded to the next server is set by the Retries property.

HRESULT get_Retries(
  long* plRetries
);

HRESULT put_Retries(
  long lRetries
);

Parameters

plRetries
Pointer to a variable that on return receives a 32-bit integer specifying the number of retries.
lRetries
A 32-bit integer that specifies the number of retries.

Return Values

These property methods return S_OK if the call is successful; otherwise, they return an error code.

Remarks

This property is read/write.

[Visual Basic]

The Retries property gets or sets the number of times an authentication request is retried. RADIUS servers handle an authentication request in the order determined by the Order property of each of the FPCRadiusServer objects in the collection. If the first server in the collection is unavailable, the request is forwarded to the second server, and so on. The number of times authentication is tried on each RADIUS server before the request is forwarded to the next server is set by the Retries property.

Property Retries As Long

Property Value

A 32-bit integer that specifies the number of retries.

Remarks

This property is read/write.

Requirements

Server: Requires Windows Server 2003 or Windows 2000.
Version: Requires Internet Security and Acceleration Server 2004.
Header: Declared in Msfpccom.idl.
Library: Use Microsoft Internet Security and Acceleration Server 2004 Administration Library.

See Also

FPCRadiusServers