Microsoft Internet Security and Acceleration Server 2004 SDK

UpstreamResolveSystem Property of IFPCWebProxy[C++]

FPCWebProxy.UpstreamResolveSystem [Visual Basic]

[C++]

The UpstreamResolveSystem property gets or sets a value from the FpcNameSystem enumerated type that specifies which information the ISA Server Web proxy will use to resolve the name of an upstream server, either the Domain Name System (DNS) or the Windows Internet Name Service (WINS) information, both of which are returned by an upstream server.

HRESULT get_UpstreamResolveSystem(
  FpcNameSystem* pNameSystem
);

HRESULT put_UpstreamResolveSystem(
  FpcNameSystem NameSystem
);

Parameters

pNameSystem
Pointer to a value from the FpcNameSystem enumerated type that is set on return to fpc_NameSystem_DNS if the Web proxy is to use the DNS information to resolve the name of an upstream server, or to fpc_NameSystem_WINS if the Web proxy is to use the WINS information.
NameSystem
Value from the FpcNameSystem enumerated type that is set to fpc_NameSystem_DNS if the Web proxy is to use the DNS information to resolve the name of an upstream server, or to fpc_NameSystem_WINS if the Web proxy is to use the WINS information.

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.

After the value of this property has been changed, and the change has been saved by calling the Save method, the Microsoft Firewall service must be restarted for the change to take effect. The Firewall service can be restarted by calling the IFPCArray::RestartServices method.

[Visual Basic]

The UpstreamResolveSystem property gets or sets a value from the FpcNameSystem enumerated type that specifies which information the ISA Server Web proxy will use to resolve the name of an upstream server, either the Domain Name System (DNS) or the Windows Internet Name Service (WINS) information, both of which are returned by an upstream server.

Property UpstreamResolveSystem As FpcNameSystem

Property Value

Value from the FpcNameSystem enumerated type that is set to fpc_NameSystem_DNS if the Web proxy is to use the DNS information to resolve the name of an upstream server, or to fpc_NameSystem_WINS if the Web proxy is to use the WINS information.

Remarks

This property is read/write.

After the value of this property has been changed, and the change has been saved by calling the Save method, the Microsoft Firewall service must be restarted for the change to take effect. The Firewall service can be restarted by calling the FPCArray.RestartServices method.

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

FPCWebProxy