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