1 implementation of GetSurrogate
System.Runtime.Serialization.Formatters (1)
System\Runtime\Serialization\SurrogateSelector.cs (1)
145public virtual ISerializationSurrogate? GetSurrogate(Type type, StreamingContext context, out ISurrogateSelector selector)
4 references to GetSurrogate
System.Private.Windows.Core (1)
System\Private\Windows\BinaryFormat\Deserializer\Deserializer.cs (1)
265surrogate = Options.SurrogateSelector.GetSurrogate(type, Options.StreamingContext, out _);
System.Resources.Extensions (1)
System\Resources\Extensions\BinaryFormat\Deserializer\Deserializer.cs (1)
270surrogate = Options.SurrogateSelector.GetSurrogate(type, Options.StreamingContext, out _);
System.Runtime.Serialization.Formatters (2)
System\Runtime\Serialization\ObjectManager.cs (1)
686surrogate = _selector.GetSurrogate(selectorType, _context, out useless);
System\Runtime\Serialization\SurrogateSelector.cs (1)
159return _nextSelector.GetSurrogate(type, context, out selector);