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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T02:04:48+00:00 2026-05-22T02:04:48+00:00

I’m writing a wrapper for a REST API (which is a static class with

  • 0

I’m writing a wrapper for a REST API (which is a static class with static methods) at work and it should return a class or a struct holding all the parsed Json returned from the API request. I’m parsing the Json using System.Web.Script.Serialization like so:

JavaScriptSerializer jss = new JavaScriptSerializer();
QueryResult re = jss.Deserialize<QueryResult>(json);

I then want to set two additional parameters on the QueryResult: the original Request Url used and the exact Json returned by the API. The one contradiction is that I want the entire object to be read only once it’s returned from the API wrapper. My first thought is to only let the variables be set through a constructor, but parsing Json the way that I am never lets me use a constructor. I thought about having two objects that are very similar, i.e. a private class that can’t be seen outside of the wrapper that is used for parsing and then a public class who uses a constructor to set the read only parameters once, but that’s very redundant and I’d rather do it just about any other way.

Are their any design patterns or tips to let me do this? I want it to be a syntactical error for them to try and assign to one of the properties, not just an ignored assignment.

  • 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-22T02:04:49+00:00Added an answer on May 22, 2026 at 2:04 am

    Update:

    What I’m looking for is a way to be
    able to edit an object and then lock
    it down so that every field is read
    only after a particular line of code.

    This sounds like an appropriate use case for the builder pattern. You have a mutable object that you can use just to set up the state of whatever you want to build; then this type is responsible for constructing an instance of an immutable (“locked down”) type which is actually usable.

    For example:

    public class QueryResultBuilder
    {
        private string _requestUrl;
        // plus other fields
    
        public QueryResultBuilder SetRequestUrl(string requestUrl)
        {
            _requestUrl = requestUrl;
            return this;
        }
    
        // plus other methods
    
        public QueryResult Build()
        {
            // This could be an internal constructor,
            // only used by this builder type.
            return new QueryResult(_requestUrl /* plus other parameters *);
        }
    }
    

    Then your calling code might look like this:

    JavaScriptSerializer jss = new JavaScriptSerializer();
    QueryResult re = jss.Deserialize<QueryResultBuilder>(json)
                        .SetRequestUrl("url")
                        .Build();
    

    I honestly have no idea if this is an appropriate answer for your scenario, but one common solution to the “read-only object that can be ‘updated'” problem is to have an immutable type that returns copies with modifications (much like DateTime.Add, for example).

    So you could have an operation like…

    class QueryResult
    {
        // ...lots of other stuff...
    
        public QueryResult SetRequestUrl(string requestUrl)
        {
            QueryResult clone = this.Clone();
    
            // This property could have a private setter.
            clone.RequestUrl = requestUrl;
    
            return clone;
        }
    }
    

    Then calling code would need to do something like:

    JavaScriptSerializer jss = new JavaScriptSerializer();
    QueryResult re = jss.Deserialize<QueryResult>(json).SetRequestUrl("url");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a text area in my form which accepts all possible characters from
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I am trying to understand how to use SyndicationItem to display feed which is
I used javascript for loading a picture on my website depending on which small
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I'm making a simple page using Google Maps API 3. My first. One marker
public static bool CheckLogin(string Username, string Password, bool AutoLogin) { bool LoginSuccessful; // Trim
I am writing an app with both english and french support. The app requests
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and

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.