Xceed .NET Libraries Documentation
Xceed.FileSystem Assembly / Xceed.FileSystem Namespace / StreamFile Class / StreamFile Constructor / StreamFile Constructor(Stream,String)
The inner stream around which the StreamFile will be created.
The name representing the StreamFile object.


In This Topic
    StreamFile Constructor(Stream,String)
    In This Topic
    Initializes a new instance of the StreamFile class specifying its inner stream as well as its name.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal stream As Stream, _
       ByVal name As String _
    )
    'Usage
     
    Dim stream As Stream
    Dim name As String
     
    Dim instance As New StreamFile(stream, name)
    public StreamFile( 
       Stream stream,
       string name
    )

    Parameters

    stream
    The inner stream around which the StreamFile will be created.
    name
    The name representing the StreamFile object.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also