DrawingBrushを含むBL構造をシリアル化する必要があります。私はそれを次のように書き直しました:
[ProtoContract]
public class BaseProtoBuf : INotifyPropertyChanged, IFormattable
{
[ProtoMember(1)]
public string ID { get; set; }
// Bunch of properties of .net primitive types
// ..
private DrawingBrush _geometry;
[ProtoMember(9)]
[Browsable(false)]
public DrawingBrush Geometry
{
get { return _geometry; }
set
{
_geometry = value;
ScaleDrawing();
}
}
}
[ProtoContract]
[ProtoInclude(1, typeof(string))]
// All other includes
[ProtoInclude(9, typeof(DrawingBrush)]
public class DerivedProtoBuf : BaseProtoBuf, ICloneable
{
// Some additional properties of primitive types, annotated starting with ProtoMember 10 and so on
}
シリアル化するには、次のコードを実行しています:
const string fileName = "Protobuf.bin";
using (var file = File.Create(fileName))
{
file.Position = 0;
var testBase = new BaseProtoBuf
{
Height = 100,
Width = 100,
Name = "Test 1",
OffsetX = 200,
OffsetY = 200,
Geometry = sourceList[0].Geometry // some not-null DrawingBrush
};
Serializer.Serialize(file, testBase);
file.Position = 0;
var restored = Serializer.Deserialize<BaseProtoBuf>>(file);
}
}
Derivedクラスオブジェクトをシリアル化する必要がありますが、Baseシリアル化中に、「適切なデフォルトのDrawingBrushエンコーディングが見つかりません」というメッセージが表示されます。一部のオブジェクトではDrawingBrushがnullになる可能性があるためだと思いましたが、テスト1ではそうではありません。適切にシリアル化するための回避策1)nullでないDrawingBrushを使用するベースオブジェクト2)nullのDrawingBrushを使用する派生オブジェクト?前もって感謝します。