ACMESharp.ACME.ChallengeDecoderProviderAttribute.ChallengeDecoderProviderAttribute C# (CSharp) Method

ChallengeDecoderProviderAttribute() public method

public ChallengeDecoderProviderAttribute ( string type, ChallengeTypeKind supportedType ) : System
type string
supportedType ChallengeTypeKind
return System
        public ChallengeDecoderProviderAttribute(string type,
                ChallengeTypeKind supportedType)
            : base(typeof(IChallengeDecoderProvider))
        {
            Type = type;
            SupportedType = supportedType;
        }
ChallengeDecoderProviderAttribute