HttpRequest.IsSecureConnection Property
.NET Framework 2.0
Gets a value indicting whether the HTTP connection uses secure sockets (that is, HTTPS).
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
'Declaration Public ReadOnly Property IsSecureConnection As Boolean 'Usage Dim instance As HttpRequest Dim value As Boolean value = instance.IsSecureConnection
/** @property */ public boolean get_IsSecureConnection ()
public function get IsSecureConnection () : boolean
Property Value
true if the connection is an SSL connection; otherwise, false.The following code example determines whether the IsSecureConnection property is set to false. If it is, the SuppressContent property is set to true to stop the response from being sent.
' Clear headers to ensure none ' are sent to the requesting browser ' and set the content type. Response.ClearHeaders() Response.ContentType = "image/jpeg" Dim height As Integer = 150 Dim width As Integer = 250 ' Create a Font and a PointF object to ' be used to draw text. Dim fntText As New Font("Arial", 8, FontStyle.Bold) Dim pntText As New PointF(5, 10) ' Create a Bitmap object, then use it to ' create a Graphics object. Dim bmp As New Bitmap(width, height, PixelFormat.Format24bppRgb) Dim g As Graphics = Graphics.FromImage(bmp) ' Specify that the image will be smoothed, ' then draw the rectangle and a String ' inside the rectangle. g.SmoothingMode = SmoothingMode.AntiAlias g.DrawRectangle(Pens.Blue, 0, 0, width, height) g.DrawString("Response.ClearHeaders Test", fntText, SystemBrushes.WindowText, pntText) g.FillRectangle(New SolidBrush(Color.Aqua), 0, 0, 250, 150) ' Save the Bitmap to the OutputStream property. bmp.Save(Response.OutputStream, ImageFormat.Jpeg) ' Release the Graphics and Bitmap object ' and terminate the response. g.Dispose() bmp.Dispose() Response.End()
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: