Name

UTF7Encoding

Synopsis

This class encodes Unicode characters as UTF-7, 7-bit characters. UTF-7 is a Unicode Transformation of the US-ASCII character set, designed for safe use over common Internet mail and news gateways. RFC 2152, which defines UTF-7, specifies an optional set of characters in the character set, which may or may not be encoded, because they may interfere with mail-transfer header fields. The overloaded constructor has two forms that take this into account. With no arguments, the encoding object disallows the use of optional characters (such as exclamation points and dollar signs). With a single boolean argument set to true, these optional characters are allowed in the encoding.

Public Class UTF7Encoding : Inherits Encoding
' Public Constructors
   Public Sub New() 
   Public Sub New( ByVal allowOptionals As Boolean) 
' Public Instance Methods
   Overrides Public Function GetByteCount(
        ByVal chars As Char(), ByVal index As Integer, 
        ByVal count As Integer) As Integer  
   Overrides Public Function GetBytes(ByVal chars As Char(), 
        ByVal charIndex As Integer, 
        ByVal charCount As Integer, ByVal bytes As Byte(), 
        ByVal byteIndex As Integer) As Integer  
   Overrides Public Function GetCharCount(
        ByVal bytes As Byte(), ByVal index As Integer, 
        ByVal count As Integer) As Integer  
   Overrides Public Function GetChars(ByVal bytes As Byte(), 
        ByVal byteIndex As Integer, 
        ByVal byteCount As Integer, ByVal chars As Char(), 
        ByVal charIndex As Integer) As Integer  
   Overrides Public Function GetDecoder() As ...

Get VB.NET Core Classes in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.