Share via


IWMSServer::get_AvailableIPAddresses

banner art

Previous Next

IWMSServer::get_AvailableIPAddresses

The get_AvailableIPAddresses method retrieves an IWMSAvailableIPAddresses interface containing a collection of IP addresses that can be used by the server to publish content.

Syntax

  HRESULT get_AvailableIPAddresses(
  IWMSAvailableIPAddresses**  ppIPAddrList
);

Parameters

ppIPAddrList

[out] Pointer to a pointer to an IWMSAvailableIPAddresses interface containing a collection of IP addresses.

Return Values

If the method succeeds, it returns S_OK. If it fails, it returns an HRESULT error code.

Return code Number Description
E_INVALIDARG 0x80070057 Indicates that pVal is a NULL pointer argument.

Remarks

This method calls AddRef internally. To avoid memory leaks, you must call Release when you are finished using the interface.

Example Code

  EXIT:
    // TODO: Release temporary COM objects and uninitialize COM.

Requirements

Header: wmsserver.h.

Library: WMSServerTypeLib.dll.

Platform: Windows Server 2003 family, Windows Server 2008 family.

See Also

Previous Next