Interface IResolverProvider
Encapsulates functionality to help resolve Roster objects.
Namespace: Microsoft.GNS.Roster.Service
Assembly: Microsoft.GNS.Roster.Service.dll
Syntax
public interface IResolverProvider
Methods
View SourceGetIdResolver<T>()
Gets a "resolve by Id" method for a given type.
Declaration
Func<string, Task<T>> GetIdResolver<T>()
Returns
Type | Description |
---|---|
Func<System.String, Task<T>> | An async resolver method. |
Type Parameters
Name | Description |
---|---|
T | The type to resolve. |