Application.GetResourceStream(Uri) Method
Definition
Returns a resource stream for a resource data file that is located at the specified Uri (see WPF Application Resource, Content, and Data Files).
public:
static System::Windows::Resources::StreamResourceInfo ^ GetResourceStream(Uri ^ uriResource);
[System.Security.SecurityCritical]
public static System.Windows.Resources.StreamResourceInfo GetResourceStream (Uri uriResource);
static member GetResourceStream : Uri -> System.Windows.Resources.StreamResourceInfo
Public Shared Function GetResourceStream (uriResource As Uri) As StreamResourceInfo
Parameters
Returns
A StreamResourceInfo that contains a resource stream for resource data file that is located at the specified Uri.
- Attributes
Exceptions
The Uri that is passed to GetResourceStream(Uri) is null.
The Uri that is passed to GetResourceStream(Uri) is either not relative, or is absolute but not in the pack://application:,,,/
form.
The Uri that is passed to GetResourceStream(Uri) cannot be found.
Remarks
This method is not thread safe.