久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    <legend id='37cvP'><style id='37cvP'><dir id='37cvP'><q id='37cvP'></q></dir></style></legend>

        <small id='37cvP'></small><noframes id='37cvP'>

          <bdo id='37cvP'></bdo><ul id='37cvP'></ul>
      1. <i id='37cvP'><tr id='37cvP'><dt id='37cvP'><q id='37cvP'><span id='37cvP'><b id='37cvP'><form id='37cvP'><ins id='37cvP'></ins><ul id='37cvP'></ul><sub id='37cvP'></sub></form><legend id='37cvP'></legend><bdo id='37cvP'><pre id='37cvP'><center id='37cvP'></center></pre></bdo></b><th id='37cvP'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='37cvP'><tfoot id='37cvP'></tfoot><dl id='37cvP'><fieldset id='37cvP'></fieldset></dl></div>

      2. <tfoot id='37cvP'></tfoot>

        XSD 文件,從哪里獲取 xmlns 參數(shù)?

        XSD file, where to get xmlns argument?(XSD 文件,從哪里獲取 xmlns 參數(shù)?)
        <legend id='hJq2R'><style id='hJq2R'><dir id='hJq2R'><q id='hJq2R'></q></dir></style></legend>

            <bdo id='hJq2R'></bdo><ul id='hJq2R'></ul>

            <small id='hJq2R'></small><noframes id='hJq2R'>

              • <i id='hJq2R'><tr id='hJq2R'><dt id='hJq2R'><q id='hJq2R'><span id='hJq2R'><b id='hJq2R'><form id='hJq2R'><ins id='hJq2R'></ins><ul id='hJq2R'></ul><sub id='hJq2R'></sub></form><legend id='hJq2R'></legend><bdo id='hJq2R'><pre id='hJq2R'><center id='hJq2R'></center></pre></bdo></b><th id='hJq2R'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='hJq2R'><tfoot id='hJq2R'></tfoot><dl id='hJq2R'><fieldset id='hJq2R'></fieldset></dl></div>

              • <tfoot id='hJq2R'></tfoot>
                  <tbody id='hJq2R'></tbody>

                  本文介紹了XSD 文件,從哪里獲取 xmlns 參數(shù)?的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!

                  問(wèn)題描述

                  限時(shí)送ChatGPT賬號(hào)..
                  <?xml version="1.0" encoding="utf-8"?>
                  <xs:schema id="abc" targetNamespace="http://schemas.businessNameHere.com/SoftwareNameHere" 
                             elementFormDefault="qualified" 
                             xmlns="http://schemas.businessNameHere.com/SoftwareNameHere" 
                             xmlns:mstns="http://schemas.businessNameHere.com/SoftwareNameHere" 
                             xmlns:xs="http://www.w3.org/2001/XMLSchema">
                      <xs:element name="..." type="..." />
                  <xs:complexType name="...">
                  

                  我正在開發(fā)一個(gè)使用 XSD 生成 .cs 文件的項(xiàng)目.我的問(wèn)題是關(guān)于字符串 "http://schemas.businessNameHere.com/SoftwareNameHere" 如果我??改變它,它不起作用.但是 http://不是一個(gè)有效的......背后的邏輯是什么,我在哪里可以找到關(guān)于放什么或如何更改它的信息?

                  I am working on a project using XSD to generate .cs file. My question is concerning the string "http://schemas.businessNameHere.com/SoftwareNameHere" If I change it, it doesn't work. But the http:// is not a valid one... what is the logic behind and where can I can information about what to put there or how to change it?

                  推薦答案

                  XSD 命名空間不必是有效的 URI.擁有一個(gè)作為 URL 的命名空間字符串并不意味著從 URL 中獲取任何內(nèi)容,或者與 Web 有任何關(guān)系——它只是一個(gè)與其他字符串一樣的字符串.因此,盡管從實(shí)際上不指向任何東西的意義上說(shuō),URL 可能是無(wú)效的,但它仍然是作為命名空間聲明的有效字符串.

                  XSD namespaces do not have to be valid URI's. Having a namespace string that is a URL doesn't mean anything is fetched from the URL, or anything to do with the web at all - it's simply a string like any other. So although the URL may be invalid from the sense that it doesn't actually point to anything, it's still a valid string as a namespace declaration.

                  您可以閱讀一些在命名空間標(biāo)識(shí)符存在的原因這個(gè)格式在這里.

                  使用 URL 作為命名空間標(biāo)識(shí)符有幾個(gè)原因,但主要是為了方便 - 它是一個(gè)唯一標(biāo)識(shí)符,通常對(duì)用戶具有一定的意義,就像 Java 命名空間經(jīng)典以com"開頭的方式、組織"或網(wǎng)絡(luò)".

                  There are several reasons for using URL's as a namespace identifier, but mainly it is for convenience - it's a unique identifier that generally has some meaning attached to it for the users, much like the way Java namespaces classically begin with "com", "org" or "net".

                  關(guān)于為什么命名空間是 URI(技術(shù)上,IRI)格式的細(xì)節(jié),你可以閱讀 W3C 的 XML 命名空間標(biāo)準(zhǔn).指定 XML 命名空間采用 IRI(國(guó)際資源標(biāo)識(shí)符)格式,在 RFC3986.

                  For the nitty gritty of why namespaces are in URI (technically, IRI) format, you can read the W3C's standards for XML namespaces. The specify that XML Namespaces are in IRI (International Resource Identifier) format, defined in RFC3986.

                  有關(guān)如何正確使用命名空間的更多信息,有很多很棒的演練,like這個(gè).更改命名空間時(shí)什么不起作用?

                  For more information on how to properly use namespaces, there are lots of great walkthroughs, like this one. What isn't working when you change the namespace?

                  這篇關(guān)于XSD 文件,從哪里獲取 xmlns 參數(shù)?的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

                  【網(wǎng)站聲明】本站部分內(nèi)容來(lái)源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問(wèn)題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請(qǐng)聯(lián)系我們刪除處理,感謝您的支持!

                  相關(guān)文檔推薦

                  What are good algorithms for vehicle license plate detection?(車牌檢測(cè)有哪些好的算法?)
                  onClick event for Image in Unity(Unity中圖像的onClick事件)
                  Running Total C#(運(yùn)行總 C#)
                  Deleting a directory when clicked on a hyperlink with JAvascript.ASP.NET C#(單擊帶有 JAvascript.ASP.NET C# 的超鏈接時(shí)刪除目錄)
                  asp.net listview highlight row on click(asp.net listview 在單擊時(shí)突出顯示行)
                  Calling A Button OnClick from a function(從函數(shù)調(diào)用按鈕 OnClick)

                    1. <tfoot id='QYCj9'></tfoot>
                          <bdo id='QYCj9'></bdo><ul id='QYCj9'></ul>
                        • <i id='QYCj9'><tr id='QYCj9'><dt id='QYCj9'><q id='QYCj9'><span id='QYCj9'><b id='QYCj9'><form id='QYCj9'><ins id='QYCj9'></ins><ul id='QYCj9'></ul><sub id='QYCj9'></sub></form><legend id='QYCj9'></legend><bdo id='QYCj9'><pre id='QYCj9'><center id='QYCj9'></center></pre></bdo></b><th id='QYCj9'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='QYCj9'><tfoot id='QYCj9'></tfoot><dl id='QYCj9'><fieldset id='QYCj9'></fieldset></dl></div>

                            <tbody id='QYCj9'></tbody>
                        • <small id='QYCj9'></small><noframes id='QYCj9'>

                          • <legend id='QYCj9'><style id='QYCj9'><dir id='QYCj9'><q id='QYCj9'></q></dir></style></legend>
                            主站蜘蛛池模板: 久久精品一 | 成年人免费网站 | 久久精品视频播放 | 97久久精品| 欧美精品在线免费 | 中文字字幕在线中文乱码范文 | h视频在线免费 | www.天堂av.com| 二区不卡 | 国产精品久久久久久中文字 | 欧美二区在线 | 久久精品中文字幕 | 欧美精品在线观看 | 中文字幕av在线 | 蜜桃传媒av | 国产在线播放一区二区三区 | 91久久精品国产91久久 | 国精日本亚洲欧州国产中文久久 | 国内精品伊人久久久久网站 | 羞羞网站在线免费观看 | 亚洲激情一级片 | 国产精品久久久久久久久久久久 | 日本高清中文字幕 | 日批免费在线观看 | 欧美激情区 | 日韩免费视频一区二区 | 亚洲狠狠 | 午夜视频一区二区三区 | 欧美a在线| 最新日韩在线视频 | 5060网一级毛片 | 欧美黄色一区 | 亚洲a在线观看 | 免费在线观看黄视频 | 欧美精品99 | 午夜影院在线免费观看视频 | 国产成人午夜电影网 | 福利视频网站 | 成人二区 | 无码一区二区三区视频 | 好好的日在线视频 |