System.Text.Encoding.DefaultDecoder.GetRealObject C# (CSharp) Method

GetRealObject() public method

public GetRealObject ( StreamingContext context ) : Object
context System.Runtime.Serialization.StreamingContext
return Object
            public Object GetRealObject(StreamingContext context)
            {
                Decoder decoder = m_encoding.GetDecoder();
                if (m_fallback != null)
                    decoder.m_fallback = m_fallback;
                
                return decoder;
            }