mscorlib(4.0.0.0) API with additions
RemotingCachedData.cs
1
namespace
System.Runtime.Remoting.Metadata
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
}
System.Runtime.Remoting.Metadata
Definition:
RemotingCachedData.cs:1
System.Runtime.Remoting.Metadata.SoapAttribute
Provides default functionality for all SOAP attributes.
Definition:
SoapAttribute.cs:7
All cs
System.Runtime.Remoting.Metadata
RemotingCachedData.cs
Generated by
1.8.15