This function creates a stream on the virtual cluster. It will also assign the expiration time for the stream.

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

Syntax

C#
public static void Create(
	string stream,
	TimeSpan expirationTime
)
Visual Basic
Public Shared Sub Create ( _
	stream As String, _
	expirationTime As TimeSpan _
)
Visual C++
public:
static void Create(
	String^ stream, 
	TimeSpan expirationTime
)

Parameters

stream
Type: String
complete path of the stream in vc:// or http:// format.
expirationTime
Type: TimeSpan
Time at which the stream should expire.

See Also