Application.GetContentStream(Uri) Method

Definition

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

public:
 static System::Windows::Resources::StreamResourceInfo ^ GetContentStream(Uri ^ uriContent);
[System.Security.SecurityCritical]
public static System.Windows.Resources.StreamResourceInfo GetContentStream (Uri uriContent);
public static System.Windows.Resources.StreamResourceInfo GetContentStream (Uri uriContent);
[<System.Security.SecurityCritical>]
static member GetContentStream : Uri -> System.Windows.Resources.StreamResourceInfo
static member GetContentStream : Uri -> System.Windows.Resources.StreamResourceInfo
Public Shared Function GetContentStream (uriContent As Uri) As StreamResourceInfo

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

See also