當前位置: 首頁>>代碼示例>>C#>>正文


C# Altova類代碼示例

本文整理匯總了C#中Altova的典型用法代碼示例。如果您正苦於以下問題:C# Altova類的具體用法?C# Altova怎麽用?C# Altova使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


Altova類屬於命名空間,在下文中一共展示了Altova類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: StyleURLType

 public StyleURLType(Altova.Xml.Node node)
     : base(node)
 {
     SetCollectionParents();
 }
開發者ID:paladin74,項目名稱:Dapple,代碼行數:5,代碼來源:StyleURLType.cs

示例2: localfilesystemType

 public localfilesystemType(Altova.Xml.Document doc, string namespaceURI, string prefix, string name)
     : base(doc, namespaceURI, prefix, name)
 {
     SetCollectionParents();
 }
開發者ID:paladin74,項目名稱:Dapple,代碼行數:5,代碼來源:localfilesystemType.cs

示例3: Type_Icon

 public Type_Icon(Altova.Xml.Document doc, string namespaceURI, string prefix, string name)
     : base(doc, namespaceURI, prefix, name)
 {
     SetCollectionParents();
 }
開發者ID:paladin74,項目名稱:Dapple,代碼行數:5,代碼來源:Type_Icon.cs

示例4: LayerType

 public LayerType(Altova.Xml.Node node)
     : base(node)
 {
     SetCollectionParents();
 }
開發者ID:paladin74,項目名稱:Dapple,代碼行數:5,代碼來源:LayerType.cs

示例5: Type_DisplayFont

 public Type_DisplayFont(Altova.Xml.Node node)
     : base(node)
 {
     SetCollectionParents();
 }
開發者ID:paladin74,項目名稱:Dapple,代碼行數:5,代碼來源:Type_DisplayFont.cs

示例6: SaveDocument

 public static void SaveDocument(XmlDocument doc, Altova.IO.Output output, string encoding, bool bBigEndian, bool bBOM, bool prettyPrint, bool omitXmlDecl, string lineend)
 {
     SaveDocument(doc, output, GetEncodingObject(encoding, bBigEndian, bBOM), prettyPrint, omitXmlDecl, lineend);
 }
開發者ID:Phil-Ruben,項目名稱:Residuals,代碼行數:4,代碼來源:xmloperations.cs

示例7: SetValue

 public static void SetValue(XmlNode node, MemberInfo member, Altova.Types.Duration b)
 {
     SetValue(node, member, GetFormatter(member).Format(b));
 }
開發者ID:Phil-Ruben,項目名稱:Residuals,代碼行數:4,代碼來源:xmloperations.cs

示例8: BoundingBoxType

		public BoundingBoxType(Altova.Xml.Node node) : base(node) { SetCollectionParents(); }
開發者ID:jpespartero,項目名稱:WorldWind,代碼行數:1,代碼來源:BoundingBoxType.cs

示例9: ContactElectronicMailAddressType

 public ContactElectronicMailAddressType(Altova.Xml.Node node)
     : base(node)
 {
     SetCollectionParents();
 }
開發者ID:paladin74,項目名稱:Dapple,代碼行數:5,代碼來源:ContactElectronicMailAddressType.cs

示例10: MemberElement_CONTEXT_0

			public MemberElement_CONTEXT_0 (Altova.Xml.TypeBase owner, Altova.TypeInfo.MemberInfo info) { this.owner = owner; this.info = info;}
開發者ID:josecohenca,項目名稱:xmlconvertsql,代碼行數:1,代碼來源:Asn1OutXml.cs

示例11: Type_PathList

		public Type_PathList(Altova.Xml.Node node) : base(node) { SetCollectionParents(); }
開發者ID:jpespartero,項目名稱:WorldWind,代碼行數:1,代碼來源:Type_PathList.cs

示例12: MemberElement_message

			public MemberElement_message (Altova.Xml.TypeBase owner, Altova.TypeInfo.MemberInfo info) { this.owner = owner; this.info = info;}
開發者ID:josecohenca,項目名稱:xmlconvertsql,代碼行數:1,代碼來源:Asn1OutXml.cs

示例13: tileserversetType

 public tileserversetType(Altova.Xml.Document doc, string namespaceURI, string prefix, string name)
     : base(doc, namespaceURI, prefix, name)
 {
     SetCollectionParents();
 }
開發者ID:paladin74,項目名稱:Dapple,代碼行數:5,代碼來源:tileserversetType.cs

示例14: arcimscatalogType

 public arcimscatalogType(Altova.Xml.Document doc, string namespaceURI, string prefix, string name)
     : base(doc, namespaceURI, prefix, name)
 {
     SetCollectionParents();
 }
開發者ID:paladin74,項目名稱:Dapple,代碼行數:5,代碼來源:arcimscatalogType.cs

示例15: LoadDocument

        public static XmlDocument LoadDocument(Altova.IO.Input input)
        {
            if (input is Altova.IO.FileInput)
            {
                return LoadDocument(((Altova.IO.FileInput)input).Filename);
            }
            switch (input.Type)
            {
                case Altova.IO.Input.InputType.Stream:
                    return LoadDocument(input.Stream);

                case Altova.IO.Input.InputType.Reader:
                    return LoadDocument(input.Reader);

                case Altova.IO.Input.InputType.XmlDocument:
                    return input.Document;

                default:
                    throw new System.Exception("Unknown input type");
            }
        }
開發者ID:Phil-Ruben,項目名稱:Residuals,代碼行數:21,代碼來源:xmloperations.cs


注:本文中的Altova類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。