Nevron Open Vision Documentation
Nevron.Nov.Xml Namespace / NXmlReader Class / Create Method
The stream that contains XML data and should be read.


In This Topic
    Create Method (NXmlReader)
    In This Topic
    Creates a XML reader for the given stream.
    Syntax
    'Declaration
     
    
    Public Shared Function Create( _
       ByVal stream As System.IO.Stream _
    ) As NXmlReader
    'Usage
     
    
    Dim stream As System.IO.Stream
    Dim value As NXmlReader
     
    value = NXmlReader.Create(stream)
    public static NXmlReader Create( 
       System.IO.Stream stream
    )

    Parameters

    stream
    The stream that contains XML data and should be read.

    Return Value

    A XML reader that can be used to read the XML data in the given stream.
    Exceptions
    ExceptionDescription
    Thrown if the given stream to read is null.
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also