System.Private.Windows.Nrbf.CoreNrbfSerializer
Core NRBF serializer. Supports common .NET types.
namespace System.Private.Windows.Nrbf
{
internal class CoreNrbfSerializer : INrbfSerializer
{
public static bool TryWriteObject(Stream stream, object value);
public static bool TryGetObject(SerializationRecord record, out object value);
public static bool TryBindToType(TypeName typeName, out Type type);
public static bool IsFullySupportedType(Type type);
public CoreNrbfSerializer();
}
}