Created
December 3, 2022 16:37
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Instantiates a new <see cref="ServiceFilterAttribute"/> instance. | |
/// </summary> | |
/// <param name="type">The <see cref="Type"/> of filter to find.</param> | |
public ServiceFilterAttribute(Type type) | |
{ | |
ServiceType = type ?? throw new ArgumentNullException(nameof(type)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment