Interface IDestinationResolver<T>
A typed strategy for resolving a string name to a destination
Namespace: Steeltoe.Messaging.Core
Assembly: Steeltoe.Messaging.Abstractions.dll
Syntax
public interface IDestinationResolver<out T> : IDestinationResolver
Type Parameters
Name | Description |
---|---|
T | the type of destinations this resolver returns |
Methods
| Edit this page View SourceResolveDestination(String)
Resolve the name to a destination
Declaration
T ResolveDestination(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | the name to resolve |
Returns
Type | Description |
---|---|
T | the destination if it exists |