Microsoft Internet Security and Acceleration Server 2004 SDK

IFPCNetworkSets::Add[C++]

FPCNetworkSets.Add [Visual Basic]

[C++]

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

HRESULT Add(
  BSTR Name,
  FpcNetworkSetType NetworkSetType,
  IFPCNetworkSet** ppNetworkSet
);

Parameters

Name
[in] Required. BSTR that specifies the name of the new FPCNetworkSet object to add.
NetworkSetType
[in, optional] Value from the FpcNetworkSetType enumerated type that specifies whether the network set includes only the selected networks, or includes all networks except the selected networks. The default value is fpcSelectedNetworks, which specifies that only selected networks are included.
ppNetworkSet
[out] Address of an interface pointer that on return points to the new IFPCNetworkSet interface created.

Return Values

This method can return one of the following:

[Visual Basic]

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

Function Add( _
  ByVal Name As String, _
  [ ByVal NetworkSetType As FpcNetworkSetType ] _
) As FPCNetworkSet

Parameters

Name
[in] Required. String that specifies the name of the new FPCNetworkSet object to add.
NetworkSetType
[in, optional] Value from the FpcNetworkSetType enumerated type that specifies whether the network set includes only the selected networks, or includes all networks except the selected networks. The default value is fpcSelectedNetworks, which specifies that only selected networks are included.

Return Values

This method returns a reference to the FPCNetworkSet object added if the call is 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

FPCNetworkSets