ByteToStringConversionHandler Delegate |
Defines the signature of a method supplied by the application in order to get string from SINGLE bytes data when making MSG-to-EML conversion.
Namespace: MailBee.OutlookAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public delegate string ByteToStringConversionHandler(
byte[] data
)
Public Delegate Function ByteToStringConversionHandler (
data As Byte()
) As String
Parameters
- data
- Type: SystemByte
A byte array for conversion to string.
Return Value
Type:
StringA string after conversion from bytes with user-defined encoding.
See Also