Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6700955
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T06:52:33+00:00 2026-05-26T06:52:33+00:00

I am defining a geenral API which will have a number of more specific

  • 0

I am defining a geenral API which will have a number of more specific derivations and want to know if C# interfaces are powerful enough to model this, and if so how, and if not how else I might model this.

To illustrate what I am trying to do imagine an authentication API with a general interface with an Authenticate function which takes an abstract AuthenticationToken. I want to then create more specific forms of this interface with as shown ..

abstract class AuthenticationToken
{
}

interface IAthentication
{
    bool Authenticate(string name, AuthenticationToken token);
}

class DoorKey : AuthenticationToken
{
}

interface IDoorAthentication : IAthentication
{
    bool Authenticate(string name, DoorKey token);
}

class DoorUnlocker : IDoorAthentication
{

    public bool Authenticate(string name, DoorKey token)
    {
    }
}

My intention is that the derived interface is constrained to comply with the high level form but that is not how C# interprets this.

Best Regards

Help me John Skeets .. you’re my only hope.
(Sorry .. my Star Wars BluRays have arrived!)

  • 1 1 Answer
  • 3 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T06:52:33+00:00Added an answer on May 26, 2026 at 6:52 am

    This is what you want:

    abstract class AuthenticationToken
    {
    }
    
    interface IAthentication<T> where T : AuthenticationToken
    {
        bool Authenticate(string name, T token);
    }
    
    class DoorKey : AuthenticationToken
    {
    }
    
    interface IDoorAthentication : IAthentication<DoorKey>
    {
    }
    
    class DoorUnlocker : IDoorAthentication
    {
        public bool Authenticate(string name, DoorKey token)
        {
        }
    }
    

    Generics with constraints!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm defining an abstract base class as a part of an API that will
I have a framework which works this way: After defining some meta data, it
When defining a resources in routes.rb in Rails, I have the following problem: My
After defining variables, functions, etc., can you save what you have done on the
When defining parameter type that is e.g. in System.Data you have no intellisense and
Atleast defining my problem is simple... I have a Input control (Text) and a
I have a large .NET source tree (185 C# and VB projects, of which
There are two base classes have same function name. I want to inherit both
When defining an environment variable (on Windows for me, maybe there is a more
I have a class (used by filehelpers) which gives me an error when I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.