本文整理匯總了C#中BinaryWriter.SaveMetadata方法的典型用法代碼示例。如果您正苦於以下問題:C# BinaryWriter.SaveMetadata方法的具體用法?C# BinaryWriter.SaveMetadata怎麽用?C# BinaryWriter.SaveMetadata使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類BinaryWriter
的用法示例。
在下文中一共展示了BinaryWriter.SaveMetadata方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: UpdateWriterStructure
/// <summary>
/// Updates the type structure and metadata for the specified writer.
/// </summary>
/// <param name="writer">The writer.</param>
public void UpdateWriterStructure(BinaryWriter writer)
{
if (_curStructUpdates != null)
{
_desc.UpdateWriteStructure(_desc.WriterTypeStructure, _curStructPath, _curStructUpdates);
var marsh = writer.Marshaller;
var metaHnd = marsh.GetBinaryTypeHandler(_desc);
if (metaHnd != null)
{
foreach (var u in _curStructUpdates)
metaHnd.OnFieldWrite(u.FieldId, u.FieldName, u.FieldType);
var meta = metaHnd.OnObjectWriteFinished();
if (meta != null)
writer.SaveMetadata(_desc.TypeId, _desc.TypeName, _desc.AffinityKeyFieldName, meta);
}
}
}
示例2: UpdateWriterStructure
/// <summary>
/// Updates the type structure and metadata for the specified writer.
/// </summary>
/// <param name="writer">The writer.</param>
public void UpdateWriterStructure(BinaryWriter writer)
{
if (_curStructUpdates != null)
{
_desc.UpdateWriteStructure(_desc.WriterTypeStructure, _curStructPath, _curStructUpdates);
var marsh = writer.Marshaller;
var metaHnd = marsh.GetBinaryTypeHandler(_desc);
if (metaHnd != null)
{
foreach (var u in _curStructUpdates)
metaHnd.OnFieldWrite(u.FieldId, u.FieldName, u.FieldType);
var fields = metaHnd.OnObjectWriteFinished();
// A new schema may be added, but no new fields.
// In this case, we should still call SaveMetadata even if fields are null
writer.SaveMetadata(_desc, fields);
}
}
}