Application.GetRemoteStream(Uri) Method

Definition

Returns a resource stream for a site-of-origin 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 GetRemoteStream(Uri uriRemote);
C#
public static System.Windows.Resources.StreamResourceInfo GetRemoteStream(Uri uriRemote);

Parameters

uriRemote
Uri

The Uri that maps to a loose resource at the site of origin.

Returns

A StreamResourceInfo that contains a resource stream for a site-of-origin data file that is located at the specified Uri. If the loose resource is not found, null is returned.

Attributes

Exceptions

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

The Uri that is passed to GetRemoteStream(Uri) is either not relative, or is absolute but not in the pack://siteoforigin:,,,/ form.

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