INetFwProducts::Item method (netfw.h)

The Item method returns the product with the specified index if it is in the collection.

Syntax

HRESULT Item(
  [in]          long          index,
  [out, retval] INetFwProduct **product
);

Parameters

[in] index

Index of the product to retrieve.

[out, retval] product

Reference to the returned INetFwProduct object.

Return value

If the method succeeds the return value is S_OK.

If the method fails, the return value is one of the following error codes.

Return code Description
E_ACCESSDENIED
The operation was aborted due to permissions issues.
E_INVALIDARG
The method failed due to an invalid parameter.
E_OUTOFMEMORY
The method was unable to allocate required memory.
E_POINTER
The method failed due to an invalid pointer.
HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND)
The requested item does not exist.

Requirements

Requirement Value
Minimum supported client Windows 7 [desktop apps only]
Minimum supported server Windows Server 2008 R2 [desktop apps only]
Target Platform Windows
Header netfw.h
DLL FirewallAPI.dll

See also

INetFwProduct

INetFwProducts