ICorDebugRemoteTarget Interface

Provides methods that enable developers to debug Silverlight-based applications in the common language runtime (CLR) environment.

Syntax

interface ICorDebugRemoteTarget  : IUnknown  
{  
    HRESULT GetHostName (  
        [in]  ULONG32                    cchHostName,  
        [out] ULONG32*                   pcchHostName,  
        [out, size_is(cchHostName),  
              length_is(*pcchHostName)]  
                  WCHAR szHostName[]  
        );  
};  

Methods

Method Description
ICorDebugRemoteTarget::GetHostName Method Returns the host name or the IP address of a remote machine.

Remarks

Mixed-mode (that is, managed and native code) debugging is not supported on non-x86 platforms (such as IA-64 and AMD64).

Requirements

Platforms: See System Requirements.

Header: CorDebug.idl

Library: : CorGuids.lib

.NET Framework Versions: 3.5 SP1

See also