Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

IUriStreamService.GetStream(String) Method

Provides the data stream for the specified Uri.

Namespace: DevExpress.Office.Services

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

NuGet Package: DevExpress.Office.Core

#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