本文整理汇总了C#中System.Runtime.Serialization.StreamingContext类的典型用法代码示例。如果您正苦于以下问题:C# System.Runtime.Serialization.StreamingContext类的具体用法?C# System.Runtime.Serialization.StreamingContext怎么用?C# System.Runtime.Serialization.StreamingContext使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
System.Runtime.Serialization.StreamingContext类属于命名空间,在下文中一共展示了System.Runtime.Serialization.StreamingContext类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetObjectData
public override void GetObjectData(SerializationInfo info, StreamingContext context) {
if (info == null)
throw new ArgumentNullException("info");
base.GetObjectData(info, context);
info.AddValue("DecisionNumber", DecisionNumber);
}
示例2: GetObjectData
public override void GetObjectData(SerializationInfo info, StreamingContext context) {
if (info == null)
throw new ArgumentNullException("info");
base.GetObjectData(info, context);
info.AddValue("ElementDescription", _elementDescription);
}
示例3: MismatchedTreeNodeException
protected MismatchedTreeNodeException(SerializationInfo info, StreamingContext context)
: base(info, context) {
if (info == null)
throw new ArgumentNullException("info");
this._expecting = info.GetInt32("Expecting");
}
示例4: RewriteCardinalityException
protected RewriteCardinalityException(SerializationInfo info, StreamingContext context)
: base(info, context) {
if (info == null)
throw new ArgumentNullException("info");
_elementDescription = info.GetString("ElementDescription");
}
示例5: MismatchedSetException
protected MismatchedSetException(SerializationInfo info, StreamingContext context)
: base(info, context) {
if (info == null)
throw new ArgumentNullException("info");
this._expecting = (BitSet)info.GetValue("Expecting", typeof(BitSet));
}
示例6: EarlyExitException
protected EarlyExitException(SerializationInfo info, StreamingContext context)
: base(info, context) {
if (info == null)
throw new ArgumentNullException("info");
this._decisionNumber = info.GetInt32("DecisionNumber");
}
示例7: FailedPredicateException
protected FailedPredicateException(SerializationInfo info, StreamingContext context)
: base(info, context) {
if (info == null)
throw new ArgumentNullException("info");
this._ruleName = info.GetString("RuleName");
this._predicateText = info.GetString("PredicateText");
}
示例8: MismatchedRangeException
protected MismatchedRangeException(SerializationInfo info, StreamingContext context)
: base(info, context) {
if (info == null)
throw new ArgumentNullException("info");
this._a = info.GetInt32("A");
this._b = info.GetInt32("B");
}
示例9: NoViableAltException
protected NoViableAltException(SerializationInfo info, StreamingContext context)
: base(info, context) {
if (info == null)
throw new ArgumentNullException("info");
this._grammarDecisionDescription = info.GetString("GrammarDecisionDescription");
this._decisionNumber = info.GetInt32("DecisionNumber");
this._stateNumber = info.GetInt32("StateNumber");
}
示例10: ParseException
protected ParseException(SerializationInfo info, StreamingContext context) :
base(info, context) {}
示例11: RecognitionException
protected RecognitionException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
if (info == null)
throw new ArgumentNullException("info");
_index = info.GetInt32("Index");
_c = info.GetInt32("C");
_line = info.GetInt32("Line");
_charPositionInLine = info.GetInt32("CharPositionInLine");
_approximateLineInfo = info.GetBoolean("ApproximateLineInfo");
}
示例12: MismatchedTokenException
protected MismatchedTokenException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
if (info == null)
throw new ArgumentNullException("info");
this._expecting = info.GetInt32("Expecting");
this._tokenNames = new ReadOnlyCollection<string>((string[])info.GetValue("TokenNames", typeof(string[])));
}
示例13: HttpValuesCollection
private HttpValuesCollection(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
示例14: InvalidMemberException
protected InvalidMemberException(SerializationInfo info, StreamingContext context) :
base(info, context) {}
示例15: RewriteEarlyExitException
protected RewriteEarlyExitException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}