Application.GetRemoteStream(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 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
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.