2 implementations of GetSurrogate
mscorlib (2)
system\runtime\remoting\remotingsurrogateselector.cs (1)
84
public virtual ISerializationSurrogate
GetSurrogate
(Type type, StreamingContext context, out ISurrogateSelector ssout)
system\runtime\serialization\surrogateselector.cs (1)
175
public virtual ISerializationSurrogate
GetSurrogate
(Type type, StreamingContext context, out ISurrogateSelector selector) {
10 references to GetSurrogate
mscorlib (7)
system\runtime\remoting\remotingsurrogateselector.cs (1)
113
return _next.
GetSurrogate
(type, context, out ssout);
system\runtime\serialization\formatters\binary\binaryobjectinfo.cs (3)
143
if (surrogateSelector != null && (serializationSurrogate = surrogateSelector.
GetSurrogate
(objectType, context, out surrogateSelectorTemp)) != null)
213
serializationSurrogate = surrogateSelector.
GetSurrogate
(objectType, context, out surrogateSelectorTemp);
587
serializationSurrogate = surrogateSelector.
GetSurrogate
(objectType, context, out surrogateSelectorTemp);
system\runtime\serialization\formatters\binary\binaryobjectreader.cs (1)
329
return m_surrogates.
GetSurrogate
(t, m_context, out notUsed) != null;
system\runtime\serialization\objectmanager.cs (1)
769
surrogate = m_selector.
GetSurrogate
(selectorType, m_context, out useless);
system\runtime\serialization\surrogateselector.cs (1)
189
return m_nextSelector.
GetSurrogate
(type, context, out selector);
System.Runtime.Serialization (3)
System\Runtime\Serialization\NetDataContractSerializer.cs (1)
476
return surrogateSelector.
GetSurrogate
(type, context, out surrogateSelectorNotUsed);
System\Runtime\Serialization\XmlObjectSerializerReadContextComplex.cs (1)
330
return (surrogateSelector.
GetSurrogate
(memberType, GetStreamingContext(), out surrogateSelectorNotUsed) != null);
System\Runtime\Serialization\XmlObjectSerializerWriteContextComplex.cs (1)
282
return (surrogateSelector.
GetSurrogate
(memberType, streamingContext, out surrogateSelectorNotUsed) != null);