I get some values ββin AfterReceiveRequest and want to use this in BeforeSendReply in WCF. Please help me how can I do this. I am working on C # project files. I can not use Seesion, ViewState here. I can use
static fields, but that would not be a good solution. Please give me the best solution for this.
Below are some lines of my code.
public object AfterReceiveRequest( ref System.ServiceModel.Channels.Message request, System.ServiceModel.IClientChannel channel, System.ServiceModel.InstanceContext instanceContext) { ClassABC abc = new ClassABC(); int webServiceID = abc .SetInformation(--
source share