Udostępnij za pośrednictwem


ContentProvider Constructors

Definition

Overloads

ContentProvider()

Creates a new instance of the ContentProvider looking for embedded resources in the assembly in which this class is defined.

ContentProvider(IEnumerable<EmbeddedResourcesInfo>)

Creates a new instance of the ContentProvider with a given set of assemblies to look for embedded resources in. The assemblies are searched in the order provided which means that if the same embedded resource exists in multiple assemblies then the first one found will be returned.

ContentProvider()

Creates a new instance of the ContentProvider looking for embedded resources in the assembly in which this class is defined.

public ContentProvider ();
Public Sub New ()

Applies to

ContentProvider(IEnumerable<EmbeddedResourcesInfo>)

Creates a new instance of the ContentProvider with a given set of assemblies to look for embedded resources in. The assemblies are searched in the order provided which means that if the same embedded resource exists in multiple assemblies then the first one found will be returned.

public ContentProvider (System.Collections.Generic.IEnumerable<Microsoft.WindowsAzure.Mobile.Service.Content.EmbeddedResourcesInfo> embeddedResourcesInfo);
new Microsoft.WindowsAzure.Mobile.Service.Content.ContentProvider : seq<Microsoft.WindowsAzure.Mobile.Service.Content.EmbeddedResourcesInfo> -> Microsoft.WindowsAzure.Mobile.Service.Content.ContentProvider
Public Sub New (embeddedResourcesInfo As IEnumerable(Of EmbeddedResourcesInfo))

Parameters

embeddedResourcesInfo
IEnumerable<EmbeddedResourcesInfo>

Collection of EmbeddedResourcesInfo to search for embedded resources.

Applies to