だから私は、最終的に ObjectStateFormatter Serialize() を呼び出す素敵な小さなヘルパー メソッドを持つ既存のアプリに取り組んでいます。コードは次のとおりです。
/// <summary>
/// Transforms a limited object serialization (LOS)-formatted object into a view-state value and places the results into a <see cref="T:System.IO.TextWriter"/> object.
/// </summary>
/// <param name="output">The <see cref="T:System.IO.TextWriter"/> to receive the transformed value. </param><param name="value">The LOS-formatted object to transform into a view-state value. </param>
public void Serialize(TextWriter output, object value)
{
this.SerializeInternal(output, value);
}
private void SerializeInternal(TextWriter output, object value)
{
string str = this._formatter.Serialize(value);
output.Write(str);
}
List である私のプロパティを無視すると仮定するのは正しいですか?
ありがとうケン