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).

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

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

See also