本文整理匯總了C#中System.Xml.Schema.XsdBuilder.ParseBoolean方法的典型用法代碼示例。如果您正苦於以下問題:C# XsdBuilder.ParseBoolean方法的具體用法?C# XsdBuilder.ParseBoolean怎麽用?C# XsdBuilder.ParseBoolean使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Xml.Schema.XsdBuilder
的用法示例。
在下文中一共展示了XsdBuilder.ParseBoolean方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: BuildFacet_Fixed
private static void BuildFacet_Fixed(XsdBuilder builder, string value) {
builder.facet.IsFixed = builder.ParseBoolean(value, "fixed");
}
示例2: BuildComplexContent_Mixed
private static void BuildComplexContent_Mixed(XsdBuilder builder, string value) {
builder.complexContent.IsMixed = builder.ParseBoolean(value, "mixed");
}
示例3: BuildComplexType_Abstract
private static void BuildComplexType_Abstract(XsdBuilder builder, string value) {
builder.complexType.IsAbstract = builder.ParseBoolean(value, "abstract");
}
示例4: BuildElement_Nillable
private static void BuildElement_Nillable(XsdBuilder builder, string value) {
builder.element.IsNillable = builder.ParseBoolean(value, "nillable");
}
示例5: BuildElement_Abstract
private static void BuildElement_Abstract(XsdBuilder builder, string value) {
builder.element.IsAbstract = builder.ParseBoolean(value, "abstract");
}
示例6: BuildComplexType_Mixed
private static void BuildComplexType_Mixed(XsdBuilder builder, string value)
{
builder._complexType.IsMixed = builder.ParseBoolean(value, "mixed");
}