本文整理匯總了C#中System.Xml.Schema.XdrBuilder.PopGroupInfo方法的典型用法代碼示例。如果您正苦於以下問題:C# XdrBuilder.PopGroupInfo方法的具體用法?C# XdrBuilder.PopGroupInfo怎麽用?C# XdrBuilder.PopGroupInfo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Xml.Schema.XdrBuilder
的用法示例。
在下文中一共展示了XdrBuilder.PopGroupInfo方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: XDR_EndGroup
// private static void XDR_BeginGroup(XdrBuilder builder)
// {
//
// }
private static void XDR_EndGroup(XdrBuilder builder)
{
if (!builder._ElementDef._ExistTerminal)
{
builder.SendValidationEvent(SR.Sch_ElementMissing);
}
builder._contentValidator.CloseGroup();
if (builder._GroupDef._Order == SchemaOrderMany)
{
builder._contentValidator.AddStar();
}
if (SchemaOrderMany == builder._GroupDef._Order &&
builder._GroupDef._HasMaxAttr &&
builder._GroupDef._MaxVal != uint.MaxValue)
{
builder.SendValidationEvent(SR.Sch_ManyMaxOccurs);
}
HandleMinMax(builder._contentValidator,
builder._GroupDef._MinVal,
builder._GroupDef._MaxVal);
builder.PopGroupInfo();
}
示例2: XDR_EndGroup
// private static void XDR_BeginGroup(XdrBuilder builder)
// {
//
// }
private static void XDR_EndGroup(XdrBuilder builder) {
if (!builder._ElementDef._ExistTerminal) {
builder.SendValidationEvent(Res.Sch_ElementMissing);
}
builder._ElementDef._ElementDecl.Content.CloseGroup();
if (builder._GroupDef._Order == SCHEMA_ORDER_MANY) {
builder._ElementDef._ElementDecl.Content.Star();
}
if (SCHEMA_ORDER_MANY == builder._GroupDef._Order &&
builder._GroupDef._HasMaxAttr &&
builder._GroupDef._MaxVal != uint.MaxValue) {
builder.SendValidationEvent(Res.Sch_ManyMaxOccurs);
}
HandleMinMax(builder._ElementDef._ElementDecl.Content,
builder._GroupDef._MinVal,
builder._GroupDef._MaxVal);
builder.PopGroupInfo();
}