This function gets the StreamInfo of each stream in the given streamset.

Namespace: VcClient
Assembly: VcClient (in VcClient.dll) Version: 1.0.0.0 (1.8.400.4142)

Syntax

C#
public static List<StreamInfo> GetStreamSetInfo(
	string streamSet,
	bool compression,
	bool sparseStreamSet
)
Visual Basic
Public Shared Function GetStreamSetInfo ( _
	streamSet As String, _
	compression As Boolean, _
	sparseStreamSet As Boolean _
) As List(Of StreamInfo)
Visual C++
public:
static List<StreamInfo^>^ GetStreamSetInfo(
	String^ streamSet, 
	bool compression, 
	bool sparseStreamSet
)

Parameters

streamSet
Type: String
The name of the streamSet for whose stream the StreamInfo is needed.
compression
Type: Boolean
Whether compression should be used while communicating with the VC.
sparseStreamSet
Type: Boolean
true means that the streamset is sparse and false means otherwise.

Return Value

A list of StreamInfo objects corresponding to each stream in the stream set.

See Also