IVsHTMLConverter Interface
Enables the debugger to handle some HTML elements in its output. You can get an instance of the interface from the SVsHTMLConverter (SID_SVsHTMLConverter) service.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
<GuidAttribute("218D0424-9C53-4EA1-A679-A0AED59B0E4F")> _
<InterfaceTypeAttribute()> _
Public Interface IVsHTMLConverter
[GuidAttribute("218D0424-9C53-4EA1-A679-A0AED59B0E4F")]
[InterfaceTypeAttribute()]
public interface IVsHTMLConverter
[GuidAttribute(L"218D0424-9C53-4EA1-A679-A0AED59B0E4F")]
[InterfaceTypeAttribute()]
public interface class IVsHTMLConverter
[<GuidAttribute("218D0424-9C53-4EA1-A679-A0AED59B0E4F")>]
[<InterfaceTypeAttribute()>]
type IVsHTMLConverter = interface end
public interface IVsHTMLConverter
The IVsHTMLConverter type exposes the following members.
Methods
Name | Description | |
---|---|---|
ConvertFromEntities | Converts entity references in a string to characters. | |
ConvertFromURLEncoding | Converts a string from URL encoding (such as using %20 for space) to characters. | |
ConvertToEntities | Converts a character string to one containing entity references such "ä" for the character "ä." | |
ConvertToURLEncoding | Converts a string substituting URL encoding where needed, such as "%20" for a space. | |
get_DefaultURLEncodingCodePage | Returns the value of the default code page used when encoding strings. |
Top