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

  • Home
  • SEARCH
  • 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 7051657
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T03:17:23+00:00 2026-05-28T03:17:23+00:00

Using reflection I want to retrieve only the properties that have both a get

  • 0

Using reflection I want to retrieve only the properties that have both a get and a set method, and ignore ones with only a get. What I’m trying to do is give the user a list of variables that he/she is able to change, so showing them properties that only have a get method is misleading.

Given this code below, the user would only be shown Name. Or I could possibly show them both, but grey-out UniqueID so they know they cannot change it.

public Int64 UniqueID
{
    get { return this.uniqueID; }
}

public String Name
{
    get { return this.name; }
    set { this.name = value; }
}

Background Info: I’m using C# 4.0.

  • 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-28T03:17:24+00:00Added an answer on May 28, 2026 at 3:17 am

    You can use the CanRead and CanWrite properties:

    Type type = ...
    var readWriteProps = type.GetProperties()
                             .Where(p => p.CanRead && p.CanWrite); 
    

    Do note that the above query looks only for public properties with public accessors.

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

Sidebar

Related Questions

I am trying to write a method using reflection to return all classes that
If I call a method using reflection, the only way I can get it
How can I invoke a method with parameters using reflection ? I want to
Using reflection, how can I get all types that implement an interface with C#
I'm using reflection to loop through a Type 's properties and set certain types
I want to set the value of a private field using reflection for unit
I'm trying to write a Compare method to compare properties in some POCOs using
I want to get variable value from an objective-c class, using reflection. company.h looks
I am working on a method that compares two objects using reflection. The object
I want to get a notification when object attribute is changed by using reflection.

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.