Skip to main content

IUriStreamService.GetStream(String) Method

Provides the data stream for the specified Uri.

Namespace: DevExpress.Office.Services

Assembly: DevExpress.Office.v23.2.Core.dll

NuGet Packages: DevExpress.Office.Core, DevExpress.Win.Navigation

Declaration

Stream GetStream(
    string url
)

Parameters

Name Type Description
url String

A string specifying the URI of the object that is the source of the stream.

Returns

Type Description
Stream

A Stream object specifying a data stream.

Remarks

The GetStream method should return null, or a data stream for the specified URI.

The GetStream method of the default Uri Stream Service in the RichEditControl polls all registered Uri stream providers by calling their IUriStreamProvider.GetStream methods.

See Also