RemoteException wrapping System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. —> RemoteException wrapping System.NotSupportedException: Support for UTF-7 is disabled. See SYSLIB0001 warning - .NET | Microsoft Learn for more information.
Dim utf7Encoding As New System.Text.UTF7Encoding()
Dim fallback As New System.Text.DecoderReplacementFallback("?")
utf7Encoding = CType(utf7Encoding.Clone(), System.Text.UTF7Encoding)
utf7Encoding.DecoderFallback = fallback
Using streamReader As New StreamReader(filePath, utf7Encoding)
Data = streamReader.ReadToEnd()
End Using