| EncodingFixerFixQuickBaseEncoding Method  | 
 
            QuickBase has a unique feature which converts certain input characters into windows-1252 encoding and stores them in the database
            (This assists Windows users when they use QuickBase HTML UI). When data containing such characters is queried, 
            the windows-1252 encoding will not change and will remain surrounded by the usual UTF8-encoded XML.
            If this data requires XML parsing, the windows-1252 encoded characters have to be re-encoded to UTF8 encoding.
            This unique feature was recently removed from appcenter, but still exists in QuickBase.
            
 
    Namespace: 
   Intuit.Ipp.Core.Rest
    Assembly:
   Intuit.Ipp.Core (in Intuit.Ipp.Core.dll) Version: 4.0.0.0 (4.0.0.0)
Syntaxpublic static string FixQuickBaseEncoding(
	byte[] encodedValue
)
Parameters
- encodedValue
 - Type: SystemByte
a response from QuickBase that's mostly UTF8 encoded but has Windows-1252-encoded characters embedded in it 
Return Value
Type: 
StringReturns the encoded response.
See Also