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 327843
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T09:26:23+00:00 2026-05-12T09:26:23+00:00

I need some solution to trace the class-owner of a method, in which the

  • 0

I need some solution to trace the class-owner of a method, in which the object is constructed. I mean to say, I want the constructor to automatically resolve the Type object of the “creator” class. Is it possible in C#?

  • 1 1 Answer
  • 0 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-12T09:26:23+00:00Added an answer on May 12, 2026 at 9:26 am

    Assuming that inlining of the method that needs to check its caller and permissions aren’t a problem, you can call the following method in a constructor:

    [System.Runtime.CompilerServices.MethodImpl(
     System.Runtime.CompilerServices.MethodImplOptions.NoInlining)]
    public static Type GetCallerType()
    {
        StackTrace st = new StackTrace(2);
        StackFrame sf = st.GetFrame(0);
        return sf.GetMethod().DeclaringType;
    }
    

    So for your real question, the answer is yes, it is possible, but not recommended.

    EDIT:

    The method will require the reflection permission to access the GetMethod() method and the DeclaringType property. For the stack trace, a security permission for unmanaged code is needed (if I understand the documentation correctly), which basically renders this method useless for anything less than fully trusted code.

    As you see, I decorated the method with an attribute that explicitly requests the JIT not to inline the method, since it walks at least one frame up the call stack. Problems arise if the calling method becomes inlined (or whatever transform the JIT applies) in its own calling method. I can give a sample with a short property, since properties are likely to be inlined by the JIT, though I cannot guarantee that this is corret:

    public object PropertyThatGivesObject
    {
        get { return new ObjectThatTracksItsCreator(); }
    }
    

    While this is pretty exotic (the property is not a ‘property of an object’, it is a factory), this has at least one problem:

    1. Is the property’s declaring type really the creator (suppose it is an indirection)?
    2. If the property getter is inlined, should it have been the property’s declaring type that was the creator? (Relevant if the method that invokes the property is declared by another type)
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.