Microsoft Internet Security and Acceleration Server 2004 SDK

IFPCAddressRanges::Add[C++]

FPCAddressRanges.Add [Visual Basic]

[C++]

The Add method creates a new FPCAddressRange object in the collection and returns a reference to it.

HRESULT Add(
  BSTR Name,
  BSTR IP_From,
  BSTR IP_To,
  IFPCAddressRange** ppNewItem
);

Parameters

Name
[in] Required. BSTR that specifies the name of the IP address range.
IP_From
[in] Required. BSTR that specifies the lower bound of the IP address range.
IP_To
[in] Required. BSTR that specifies the upper bound of the IP address range.
ppNewItem
[out] Address of an interface pointer that on return points to the new IFPCAddressRange interface created.

Return Values

This method can return one of the following:

[Visual Basic]

The Add method creates a new FPCAddressRange object in the collection and returns a reference to it.

Function Add( _
  ByVal Name As String, _
  ByVal IP_From As String, _
  ByVal IP_To As String _
) As FPCAddressRange

Parameters

Name
[in] Required. String that specifies the name of the IP address range.
IP_From
[in] Required. String that specifies the lower bound of the IP address range.
IP_To
[in] Required. String that specifies the upper bound of the IP address range.

Return Values

This method returns a reference to an FPCAddressRange object if successful. Otherwise, an error is raised that can be intercepted by using an error handler.

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

FPCAddressRanges