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

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

Syntax

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

Parameters

streamSet
Type: CosmosUri
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.

Return Value

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

See Also