TagHelperDescriptorResolver.ResolveDescriptorsInAssembly 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.
Resolves all TagHelperDescriptors for ITagHelpers from the
given assemblyName.
protected:
virtual System::Collections::Generic::IEnumerable<Microsoft::AspNetCore::Razor::Compilation::TagHelpers::TagHelperDescriptor ^> ^ ResolveDescriptorsInAssembly(System::String ^ assemblyName, Microsoft::AspNetCore::Razor::SourceLocation documentLocation, Microsoft::AspNetCore::Razor::ErrorSink ^ errorSink);
protected virtual System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Razor.Compilation.TagHelpers.TagHelperDescriptor> ResolveDescriptorsInAssembly (string assemblyName, Microsoft.AspNetCore.Razor.SourceLocation documentLocation, Microsoft.AspNetCore.Razor.ErrorSink errorSink);
abstract member ResolveDescriptorsInAssembly : string * Microsoft.AspNetCore.Razor.SourceLocation * Microsoft.AspNetCore.Razor.ErrorSink -> seq<Microsoft.AspNetCore.Razor.Compilation.TagHelpers.TagHelperDescriptor>
override this.ResolveDescriptorsInAssembly : string * Microsoft.AspNetCore.Razor.SourceLocation * Microsoft.AspNetCore.Razor.ErrorSink -> seq<Microsoft.AspNetCore.Razor.Compilation.TagHelpers.TagHelperDescriptor>
Protected Overridable Function ResolveDescriptorsInAssembly (assemblyName As String, documentLocation As SourceLocation, errorSink As ErrorSink) As IEnumerable(Of TagHelperDescriptor)
Parameters
- assemblyName
- String
The name of the assembly to resolve TagHelperDescriptors from.
- documentLocation
- SourceLocation
The SourceLocation of the directive.
- errorSink
- ErrorSink
Used to record errors found when resolving TagHelperDescriptors
within the given assemblyName.
Returns
TagHelperDescriptors for ITagHelpers from the given
assemblyName.