Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
 IsLocal Property
Collapse All/Expand All Collapse All
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
HttpListenerRequest..::.IsLocal Property

Gets a Boolean value that indicates whether the request is sent from the local computer.

Namespace:  System.Net
Assembly:  System (in System.dll)
Visual Basic (Declaration)
Public ReadOnly Property IsLocal As Boolean
Visual Basic (Usage)
Dim instance As HttpListenerRequest
Dim value As Boolean

value = instance.IsLocal
C#
public bool IsLocal { get; }
Visual C++
public:
property bool IsLocal {
    bool get ();
}
JScript
public function get IsLocal () : boolean

Property Value

Type: System..::.Boolean
true if the request originated on the same computer as the HttpListener object that provided the request; otherwise, false.

Applications can use this property to perform special processing when requests are from the local computer.

The following code example demonstrates using the IsLocal property.

C#
public static void ShowRequestProperties2 (HttpListenerRequest request)
{
    Console.WriteLine("KeepAlive: {0}", request.KeepAlive);
    Console.WriteLine("Local end point: {0}", request.LocalEndPoint.ToString());
    Console.WriteLine("Remote end point: {0}", request.RemoteEndPoint.ToString());
    Console.WriteLine("Is local? {0}", request.IsLocal);
    Console.WriteLine("HTTP method: {0}", request.HttpMethod);
    Console.WriteLine("Protocol version: {0}", request.ProtocolVersion);
    Console.WriteLine("Is authenticated: {0}", request.IsAuthenticated);
    Console.WriteLine("Is secure: {0}", request.IsSecureConnection);

}

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement | Site Feedback
Page view tracker