Microsoft Internet Security and Acceleration Server 2004 SDK

SSLRequireSecureChannel Property of IFPCWebPublishingProperties[C++]

FPCWebPublishingProperties.SSLRequireSecureChannel [Visual Basic]

[C++]

The SSLRequireSecureChannel property gets or sets a value from the FpcSSLRequireSecureChannelMode enumerated type that indicates whether a secure channel is required and whether 128-bit encryption is required.

HRESULT get_SSLRequireSecureChannel(
  FpcSSLRequireSecureChannelMode* pFpcSSLRequireSecureChannelMode
);

HRESULT put_SSLRequireSecureChannel(
  FpcSSLRequireSecureChannelMode FpcSSLRequireSecureChannelMode
);

Parameters

pFpcSSLRequireSecureChannelMode
Pointer to a value from the FpcSSLRequireSecureChannelMode enumerated type that is set on return to:
  • fpcSSLDontRequireSecureChannel, which indicates that a secure channel is not required.
  • fpcSSLRequireSecureChannel, which indicates that a secure channel is required.
  • fpcSSLRequire128BitSecureChannel, which indicates that a secure channel using 128-bit encryption is required.
  • fpcSSLRequireBoth, which indicates that a secure channel and 128-bit encryption are required.
FpcSSLRequireSecureChannelMode
Value from the FpcSSLRequireSecureChannelMode enumerated type that indicates whether a secure channel is required and whether 128-bit encryption is required.

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. The default value is fpcSSLDontRequireSecureChannel, which indicates that a secure channel is not required.

[Visual Basic]

The SSLRequireSecureChannel property gets or sets a value from the FpcSSLRequireSecureChannelMode enumerated type that indicates whether a secure channel is required and whether 128-bit encryption is required.

Property SSLRequireSecureChannel As FpcSSLRequireSecureChannelMode

Property Value

Value from the FpcSSLRequireSecureChannelMode enumerated type. The possible values are:

Remarks

This property is read/write. The default value is fpcSSLDontRequireSecureChannel, which indicates that a secure channel is not required.

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

FPCWebPublishingProperties