INetworkHelperServiceIsSecureConnection(Boolean, IDictionaryString, String, IPAddress) Method

Determines whether the specified request uses a secure (HTTPS) connection from the point-of-view of the browser.

Namespace: Dundas.BI.Services
Assembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntax
bool IsSecureConnection(
	bool isSecureConnection,
	IDictionary<string, string?> requestHeaders,
	IPAddress? remoteIpAddress
)

Parameters

isSecureConnection  Boolean
A value indicating whether the HTTP request indicates that it is already secure.
requestHeaders  IDictionaryString, String
The request headers (keys must be case-insensitive).
remoteIpAddress  IPAddress
The IP address associated with the request.

Return Value

Boolean
if the connection is secure; otherwise, .
Remarks
This method calls the overload with a value of for the requireTrustedProxy parameter.
See Also