Let's say that I have web service with a bunch of methods, and that webservice has a Public Shared Variable on it, if I get a request from Client A and he changes the value of this variable, then will Client B see the value Changed by Client A?
Let me try to explain myself better, example
Let's say I have this variable:
Public Shared state As Boolean = False(Visual Basic)
public static bool state = false; (C#)
And then Client A goes
state = true (VB)
state = true; (C#)
When Client B Check the value of the variable state, will it be true or false?