Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Converts a string from URL encoding (such as using %20 for space) to characters.
Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function ConvertFromURLEncoding ( _
    uCodePage As UInteger, _
    szToConvert As String, _
    cchBuffSize As UInteger, _
    <OutAttribute> szBuffer As UShort(), _
    <OutAttribute> ByRef pcchBuffSizeActual As UInteger _
) As Integer
int ConvertFromURLEncoding(
    uint uCodePage,
    string szToConvert,
    uint cchBuffSize,
    ushort[] szBuffer,
    out uint pcchBuffSizeActual
)
int ConvertFromURLEncoding(
    [InAttribute] unsigned int uCodePage, 
    [InAttribute] String^ szToConvert, 
    [InAttribute] unsigned int cchBuffSize, 
    [OutAttribute] array<unsigned short>^ szBuffer, 
    [OutAttribute] unsigned int% pcchBuffSizeActual
)
abstract ConvertFromURLEncoding : 
        uCodePage:uint32 * 
        szToConvert:string * 
        cchBuffSize:uint32 * 
        szBuffer:uint16[] byref * 
        pcchBuffSizeActual:uint32 byref -> int
function ConvertFromURLEncoding(
    uCodePage : uint, 
    szToConvert : String, 
    cchBuffSize : uint, 
    szBuffer : ushort[], 
    pcchBuffSizeActual : uint
) : int
Parameters
- uCodePage 
 Type: UInt32- [in] The code page to use when converting to characters. 
- szToConvert 
 Type: String- [in] String to convert. 
- cchBuffSize 
 Type: UInt32- [in] Length of the buffer in which to store the converted string. 
- szBuffer 
 Type: array<UInt16[]- [out] The buffer containing the converted string. 
- pcchBuffSizeActual 
 Type: UInt32%- [out] Pointer to the actual size of the buffer used. 
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsHTMLConverter::ConvertFromURLEncoding(
   [in] UINT uCodePage, 
   [in] LPCOLESTR szToConvert, 
   [in] ULONG cchBuffSize, 
   [in, out, size_is(cchBuffSize)] OLECHAR szBuffer[], 
   [out] ULONG *pcchBuffSizeActual
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.