Click here to Skip to main content
15,902,777 members

Comments by saurabh.15in (Top 6 by date)

saurabh.15in 13-Feb-20 9:05am View    
Thanks Jimmson for reply.
I am not referring to protected access specifier.
My doubt is, what we can do if some exception occurred in OnException Method itsself. I have implemented my own logging here.
Example : Some error occurred in Application-> It comes to OnException and try to log the exception in DB using some logger-> some exception occurred in logger itsself(lets say DB connection is lost) again there will be exception inside Onexception. Now what we can do to handle this situation.
saurabh.15in 18-Jul-18 1:38am View    
Thanks Gerry, I am studying the component strategy pattern and will try to implement.
saurabh.15in 18-Jul-18 1:36am View    
Sorry, I forgot to mention that there will be a method inside the class. Below is bit more explanation.

Web API- Class A- Method M->return type (custom class B)

Client - X- Consuming method M of Web API (This is wprking fine).

Now I have few more client.

Client - Y- (need same data which is being returned by Web API- Class A- method B but in different format)

In the same way, we have some more client who need same data but in different format.)
saurabh.15in 5-Feb-18 10:00am View    
Thank you so much..I will see how much i can read :)
saurabh.15in 31-Jan-18 8:36am View    
I am trying to create a type of recorder. But taking care that recorder is not capturing sensitive data.
So can i assume,it is not possible?