ImageGear .NET v25.2 - Updated
ImageGear.Web.Services Assembly / ImageGear.Web.TextSearch Namespace / TextDocument Class / FromJsonStream Method
The stream from which to deserialize the TextDocument




In This Topic
    FromJsonStream Method (TextDocument)
    In This Topic
    Returns a TextDocument deserialized from a JSON stream
    Syntax
    'Declaration
     
    Public Shared Function FromJsonStream( _
       ByVal stream As Stream _
    ) As TextDocument
    'Usage
     
    Dim stream As Stream
    Dim value As TextDocument
     
    value = TextDocument.FromJsonStream(stream)
    public static TextDocument FromJsonStream( 
       Stream stream
    )
    public: static TextDocument* FromJsonStream( 
       Stream* stream
    ) 
    public:
    static TextDocument^ FromJsonStream( 
       Stream^ stream
    ) 

    Parameters

    stream
    The stream from which to deserialize the TextDocument

    Return Value

    The deserialized TextDocument or null if deserialization failed
    See Also