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.
The GetMaxByteCount method returns the maximum number of bytes that are required to store dataCount bytes of base64-encoded data after it has been decoded.
Namespace: Microsoft.Exchange.Data.Mime.Encoders
Assembly: Microsoft.Exchange.Data.Common (in Microsoft.Exchange.Data.Common.dll)
Syntax
'Declaration
Public Overrides NotOverridable Function GetMaxByteCount ( _
dataCount As Integer _
) As Integer
'Usage
Dim instance As Base64Decoder
Dim dataCount As Integer
Dim returnValue As Integer
returnValue = instance.GetMaxByteCount(dataCount)
public override sealed int GetMaxByteCount(
int dataCount
)
Parameters
dataCount
Type: System.Int32The number of bytes of base64-encoded data.
Return value
Type: System.Int32
The maximum number of bytes needed to store the dataCount base64-encoded bytes after they have been decoded.