XmlSchemaMaxInclusiveFacetとは? わかりやすく解説

XmlSchemaMaxInclusiveFacet クラス

W3C (World Wide Web Consortium) で指定されXML スキーマmaxInclusive 要素表します。このクラス使用すると、simpleType 要素最大値制限設定できます要素の値は maxInclusive 要素の値以下である必要があります

名前空間: System.Xml.Schema
アセンブリ: System.Xml (system.xml.dll 内)
構文構文

Public Class XmlSchemaMaxInclusiveFacet
    Inherits XmlSchemaFacet
Dim instance As XmlSchemaMaxInclusiveFacet
public class XmlSchemaMaxInclusiveFacet : XmlSchemaFacet
public ref class XmlSchemaMaxInclusiveFacet
 : public XmlSchemaFacet
public class XmlSchemaMaxInclusiveFacet extends
 XmlSchemaFacet
public class XmlSchemaMaxInclusiveFacet extends
 XmlSchemaFacet
使用例使用例

XmlSchemaMaxInclusiveFacet クラス使用する例を次に示します

Imports System
Imports System.Xml
Imports System.Xml.Schema

Class XMLSchemaExamples
    Public Shared Sub Main()

        Dim schema As New
 XmlSchema()

        ' <xs:simpleType name="WaitQueueLengthType">
        Dim WaitQueueLengthType As New
 XmlSchemaSimpleType()
        WaitQueueLengthType.Name = "WaitQueueLengthType"

        ' <xs:restriction base="xs:int">
        Dim restriction As New
 XmlSchemaSimpleTypeRestriction()
        restriction.BaseTypeName = New XmlQualifiedName("int",
 "http://www.w3.org/2001/XMLSchema")

        ' <xs:maxInclusive value="5"/>
        Dim maxInclusive As New
 XmlSchemaMaxInclusiveFacet()
        maxInclusive.Value = "5"
        restriction.Facets.Add(maxInclusive)

        WaitQueueLengthType.Content = restriction

        schema.Items.Add(WaitQueueLengthType)

        ' <xs:element name="Lobby">
        Dim element As New
 XmlSchemaElement()
        element.Name = "Lobby"

        ' <xs:complexType>
        Dim complexType As New
 XmlSchemaComplexType()

        ' <xs:attribute name="WaitQueueLength" type="WaitQueueLengthType"/>
        Dim WaitQueueLengthAttribute As New
 XmlSchemaAttribute()
        WaitQueueLengthAttribute.Name = "WaitQueueLength"
        WaitQueueLengthAttribute.SchemaTypeName = New XmlQualifiedName("WaitQueueLengthType",
 "")
        complexType.Attributes.Add(WaitQueueLengthAttribute)

        element.SchemaType = complexType

        schema.Items.Add(element)

        Dim schemaSet As New
 XmlSchemaSet()
        AddHandler schemaSet.ValidationEventHandler, AddressOf
 ValidationCallbackOne

        schemaSet.Add(schema)
        schemaSet.Compile()

        Dim compiledSchema As XmlSchema = Nothing

        For Each schema1 As
 XmlSchema In schemaSet.Schemas()
            compiledSchema = schema1
        Next

        Dim nsmgr As New
 XmlNamespaceManager(New NameTable())
        nsmgr.AddNamespace("xs", "http://www.w3.org/2001/XMLSchema")
        compiledSchema.Write(Console.Out, nsmgr)

    End Sub

    Public Shared Sub ValidationCallbackOne(ByVal
 sender As Object, ByVal
 args As ValidationEventArgs)
        Console.WriteLine(args.Message)
    End Sub

End Class
using System;
using System.Xml;
using System.Xml.Schema;

class XMLSchemaExamples
{
    public static void Main()
    {

        XmlSchema schema = new XmlSchema();

        // <xs:simpleType name="WaitQueueLengthType">
        XmlSchemaSimpleType WaitQueueLengthType = new XmlSchemaSimpleType();
        WaitQueueLengthType.Name = "WaitQueueLengthType";

        // <xs:restriction base="xs:int">
        XmlSchemaSimpleTypeRestriction restriction = new XmlSchemaSimpleTypeRestriction();
        restriction.BaseTypeName = new XmlQualifiedName("int",
 "http://www.w3.org/2001/XMLSchema");

        // <xs:maxInclusive value="5"/>
        XmlSchemaMaxInclusiveFacet maxInclusive = new XmlSchemaMaxInclusiveFacet();
        maxInclusive.Value = "5";
        restriction.Facets.Add(maxInclusive);

        WaitQueueLengthType.Content = restriction;

        schema.Items.Add(WaitQueueLengthType);

        // <xs:element name="Lobby">
        XmlSchemaElement element = new XmlSchemaElement();
        element.Name = "Lobby";

        // <xs:complexType>
        XmlSchemaComplexType complexType = new XmlSchemaComplexType();

        // <xs:attribute name="WaitQueueLength" type="WaitQueueLengthType"/>
        XmlSchemaAttribute WaitQueueLengthAttribute = new XmlSchemaAttribute();
        WaitQueueLengthAttribute.Name = "WaitQueueLength";
        WaitQueueLengthAttribute.SchemaTypeName = new XmlQualifiedName("WaitQueueLengthType",
 "");
        complexType.Attributes.Add(WaitQueueLengthAttribute);

        element.SchemaType = complexType;

        schema.Items.Add(element);

        XmlSchemaSet schemaSet = new XmlSchemaSet();
        schemaSet.ValidationEventHandler += new ValidationEventHandler(ValidationCallbackOne);
        schemaSet.Add(schema);
        schemaSet.Compile();

        XmlSchema compiledSchema = null;

        foreach (XmlSchema schema1 in schemaSet.Schemas())
        {
            compiledSchema = schema1;
        }

        XmlNamespaceManager nsmgr = new XmlNamespaceManager(new
 NameTable());
        nsmgr.AddNamespace("xs", "http://www.w3.org/2001/XMLSchema");
        compiledSchema.Write(Console.Out, nsmgr);
    }

    public static void ValidationCallbackOne(object
 sender, ValidationEventArgs args)
    {
        Console.WriteLine(args.Message);
    }
}

前述コード例に対して生成される XML ファイル次に示します

<?xml version="1.0" encoding="IBM437"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">

    <xs:simpleType name="WaitQueueLengthType">
        <xs:restriction base="xs:int">
            <xs:maxInclusive value="5"/>
        </xs:restriction>
    </xs:simpleType>

    <xs:element name="Lobby">
        <xs:complexType>
            <xs:attribute name="WaitQueueLength"
 type="WaitQueueLengthType"/>
        </xs:complexType>
    </xs:element>

</xs:schema>
継承階層継承階層
System.Object
   System.Xml.Schema.XmlSchemaObject
     System.Xml.Schema.XmlSchemaAnnotated
       System.Xml.Schema.XmlSchemaFacet
        System.Xml.Schema.XmlSchemaMaxInclusiveFacet
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
XmlSchemaMaxInclusiveFacet メンバ
System.Xml.Schema 名前空間

XmlSchemaMaxInclusiveFacet コンストラクタ


XmlSchemaMaxInclusiveFacet プロパティ


パブリック プロパティパブリック プロパティ

  名前 説明
パブリック プロパティ Annotation  Annotation プロパティ取得または設定します。 ( XmlSchemaAnnotated から継承されます。)
パブリック プロパティ Id  文字列 ID取得または設定します。 ( XmlSchemaAnnotated から継承されます。)
パブリック プロパティ IsFixed  ファセット固定されていることを示す情報取得または設定します。 ( XmlSchemaFacet から継承されます。)
パブリック プロパティ LineNumber  schema 要素参照するファイル行番号取得または設定します。 ( XmlSchemaObject から継承されます。)
パブリック プロパティ LinePosition  schema 要素参照するファイル行番号取得または設定します。 ( XmlSchemaObject から継承されます。)
パブリック プロパティ Namespaces  このスキーマ オブジェクト一緒に使用する XmlSerializerNamespaces を取得または設定します。 ( XmlSchemaObject から継承されます。)
パブリック プロパティ Parent  この XmlSchemaObject の親を取得または設定します。 ( XmlSchemaObject から継承されます。)
パブリック プロパティ SourceUri  スキーマ読み込んだファイルソース位置取得または設定します。 ( XmlSchemaObject から継承されます。)
パブリック プロパティ UnhandledAttributes  現在のスキーマターゲット名前空間属さない修飾され属性取得または設定します。 ( XmlSchemaAnnotated から継承されます。)
パブリック プロパティ Value  ファセットvalue 属性取得または設定します。 ( XmlSchemaFacet から継承されます。)
参照参照

関連項目

XmlSchemaMaxInclusiveFacet クラス
System.Xml.Schema 名前空間

XmlSchemaMaxInclusiveFacet メソッド


XmlSchemaMaxInclusiveFacet メンバ

W3C (World Wide Web Consortium) で指定されXML スキーマmaxInclusive 要素表します。このクラス使用すると、simpleType 要素最大値制限設定できます要素の値は maxInclusive 要素の値以下である必要があります

XmlSchemaMaxInclusiveFacet データ型公開されるメンバを以下の表に示します


パブリック コンストラクタパブリック コンストラクタ
  名前 説明
パブリック メソッド XmlSchemaMaxInclusiveFacet XmlSchemaMaxInclusiveFacet クラス新しインスタンス初期化します。
パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ Annotation  Annotation プロパティ取得または設定します。(XmlSchemaAnnotated から継承されます。)
パブリック プロパティ Id  文字列 ID取得または設定します。(XmlSchemaAnnotated から継承されます。)
パブリック プロパティ IsFixed  ファセット固定されていることを示す情報取得または設定します。(XmlSchemaFacet から継承されます。)
パブリック プロパティ LineNumber  schema 要素参照するファイル行番号取得または設定します。(XmlSchemaObject から継承されます。)
パブリック プロパティ LinePosition  schema 要素参照するファイル行番号取得または設定します。(XmlSchemaObject から継承されます。)
パブリック プロパティ Namespaces  このスキーマ オブジェクト一緒に使用する XmlSerializerNamespaces を取得または設定します。(XmlSchemaObject から継承されます。)
パブリック プロパティ Parent  この XmlSchemaObject の親を取得または設定します。(XmlSchemaObject から継承されます。)
パブリック プロパティ SourceUri  スキーマ読み込んだファイルソース位置取得または設定します。(XmlSchemaObject から継承されます。)
パブリック プロパティ UnhandledAttributes  現在のスキーマターゲット名前空間属さない修飾され属性取得または設定します。(XmlSchemaAnnotated から継承されます。)
パブリック プロパティ Value  ファセットvalue 属性取得または設定します。(XmlSchemaFacet から継承されます。)
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

XmlSchemaMaxInclusiveFacet クラス
System.Xml.Schema 名前空間


このページでは「.NET Framework クラス ライブラリ リファレンス」からXmlSchemaMaxInclusiveFacetを検索した結果を表示しています。
Weblioに収録されているすべての辞書からXmlSchemaMaxInclusiveFacetを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からXmlSchemaMaxInclusiveFacetを検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「XmlSchemaMaxInclusiveFacet」の関連用語

XmlSchemaMaxInclusiveFacetのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



XmlSchemaMaxInclusiveFacetのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS