mscorlib(4.0.0.0) API with additions
RemotingCachedData.cs
2 {
3  internal abstract class RemotingCachedData
4  {
5  private SoapAttribute _soapAttr;
6 
7  internal SoapAttribute GetSoapAttribute()
8  {
9  if (_soapAttr == null)
10  {
11  lock (this)
12  {
13  if (_soapAttr == null)
14  {
15  _soapAttr = GetSoapAttributeNoLock();
16  }
17  }
18  }
19  return _soapAttr;
20  }
21 
22  internal abstract SoapAttribute GetSoapAttributeNoLock();
23  }
24 }
Provides default functionality for all SOAP attributes.
Definition: SoapAttribute.cs:7