Application.GetContentStream(Uri) Method

Definition

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Returns a resource stream for a content data file that is located at the specified Uri (see WPF Application Resource, Content, and Data Files).

C#
[System.Security.SecurityCritical]
public static System.Windows.Resources.StreamResourceInfo GetContentStream(Uri uriContent);
C#
public static System.Windows.Resources.StreamResourceInfo GetContentStream(Uri uriContent);

Parameters

uriContent
Uri

The relative Uri that maps to a loose resource.

Returns

A StreamResourceInfo that contains a content data file that is located at the specified Uri. If a loose resource is not found, null is returned.

Attributes

Exceptions

The Uri that is passed to GetContentStream(Uri) is null.

The Uri that is passed to GetContentStream(Uri) is an absolute Uri.

Remarks

This method is not thread safe.

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also