7 references to ExecutionAndPublication
mscorlib (6)
system\Lazy.cs (6)
125
: this(LazyThreadSafetyMode.
ExecutionAndPublication
)
143
: this(valueFactory, LazyThreadSafetyMode.
ExecutionAndPublication
)
154
this(isThreadSafe? LazyThreadSafetyMode.
ExecutionAndPublication
: LazyThreadSafetyMode.None)
182
: this(valueFactory, isThreadSafe ? LazyThreadSafetyMode.
ExecutionAndPublication
: LazyThreadSafetyMode.None)
211
if (mode == LazyThreadSafetyMode.
ExecutionAndPublication
)
263
return LazyThreadSafetyMode.
ExecutionAndPublication
;
System.ServiceModel (1)
System\ServiceModel\Channels\HttpChannelFactory.cs (1)
187
this.webSocketSoapContentType = new Lazy<string>(() => { return this.MessageEncoderFactory.CreateSessionEncoder().ContentType; }, LazyThreadSafetyMode.
ExecutionAndPublication
);