CollectionExtensions.GetRuntimeAssets Method

Definition

Gets an enumeration of assets where each asset's value equals runtime.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Generic::IEnumerable<System::String ^> ^ GetRuntimeAssets(System::Collections::Generic::IEnumerable<Microsoft::Extensions::DependencyModel::RuntimeAssetGroup ^> ^ self, System::String ^ runtime);
public static System.Collections.Generic.IEnumerable<string> GetRuntimeAssets (this System.Collections.Generic.IEnumerable<Microsoft.Extensions.DependencyModel.RuntimeAssetGroup> self, string runtime);
static member GetRuntimeAssets : seq<Microsoft.Extensions.DependencyModel.RuntimeAssetGroup> * string -> seq<string>
<Extension()>
Public Function GetRuntimeAssets (self As IEnumerable(Of RuntimeAssetGroup), runtime As String) As IEnumerable(Of String)

Parameters

self
IEnumerable<RuntimeAssetGroup>

The source enumeration of RuntimeAssetGroup.

runtime
String

The string to search for.

Returns

An enumeration of assets where each asset's Runtime equals runtime.

Exceptions

self is null.

Applies to