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

    <tfoot id='F5mI5'></tfoot>
    • <bdo id='F5mI5'></bdo><ul id='F5mI5'></ul>

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

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

    1. <legend id='F5mI5'><style id='F5mI5'><dir id='F5mI5'><q id='F5mI5'></q></dir></style></legend>

      .NET 3.5 中的 CultureInfo 類支持哪些文化?

      What cultures are supported by the CultureInfo class in .NET 3.5?(.NET 3.5 中的 CultureInfo 類支持哪些文化?)
          <i id='kywfd'><tr id='kywfd'><dt id='kywfd'><q id='kywfd'><span id='kywfd'><b id='kywfd'><form id='kywfd'><ins id='kywfd'></ins><ul id='kywfd'></ul><sub id='kywfd'></sub></form><legend id='kywfd'></legend><bdo id='kywfd'><pre id='kywfd'><center id='kywfd'></center></pre></bdo></b><th id='kywfd'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='kywfd'><tfoot id='kywfd'></tfoot><dl id='kywfd'><fieldset id='kywfd'></fieldset></dl></div>
          <legend id='kywfd'><style id='kywfd'><dir id='kywfd'><q id='kywfd'></q></dir></style></legend>
            <tbody id='kywfd'></tbody>

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

              • <bdo id='kywfd'></bdo><ul id='kywfd'></ul>
                <tfoot id='kywfd'></tfoot>
                本文介紹了.NET 3.5 中的 CultureInfo 類支持哪些文化?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                問題描述

                我需要一個 .NET 3.5 支持的文化列表,無論使用什么操作系統.這似乎很難獲得,雖然我不知道為什么!

                I need a list of cultures that are supported by .NET 3.5, regardless of the OS used. This seems to be quite a struggle to obtain, though I am not sure why!

                啊,我不知道它依賴于操作系統,這可以解釋缺乏文檔.關于 Mac/Linux 操作系統也支持什么的任何想法?

                Arghh, I was not aware that it is dependent on the OS, that would explain the lack of documentation. Any ideas on what is supported by Mac/Linux OS as well?

                謝謝:)

                推薦答案

                不幸的是,它依賴于操作系統.查看此處了解每個操作系統的默認語言支持.

                Unfortunately, it is OS dependent. Check here for default language support per OS.

                請注意,CultureInfo 文檔 警告:

                Windows 版本或服務包可以更改可用的文化.

                Windows versions or service packs can change the available cultures.

                在 ASP.NET 中,與操作系統相比,重要的是瀏覽器.它可以通過 Accept-Language (第 14.4 節)請求標頭.如果您將應用的 全球化 配置設置為 enableClientBasedCulture="true", ASP.NET 將嘗試自動將 UICulture 和 Culture 設置為瀏覽器提供的值.或者,您可以通過檢查 Request.UserLanguages 手動設置文化 屬性:

                In ASP.NET, it's the browser that's important versus the OS. It can tell you which language the user prefers via the Accept-Language (Section 14.4) request header. If you set your app's globalization configuration to enableClientBasedCulture="true", ASP.NET will try to automatically set the UICulture and Culture to the value provided by the browser. Alternatively, you can set Culture manually by inspecting the Request.UserLanguages property:

                • 如何:設置 ASP.NET 網頁全球化的文化和 UI 文化
                • Rick Strahl 顯示手動檢測和設置

                很遺憾,無法從操作系統或瀏覽器生成詳盡的可能語言列表.最接近的是 IANA 語言子標簽注冊表.這是 RFC 4646 中描述的語言注冊表 - 定義 .NET 的 CultureInfo 標記的文檔.

                Unfortunately, there's no way to generate an exhaustive list of possible languages from an OS or browser. The closest thing is the IANA Language Subtag Registry. This is the language registry described in RFC 4646 - the document that defines .NET's CultureInfo tags.

                請記住,Request.UserLanguages 中的語言標簽不保證有效.你會想要檢查它們.HTTP 1.1 對 語言標簽 使用較舊的建議,并且有沒有什么能阻止某人在語言標題中發送亂碼.

                Keep in mind, language tags in Request.UserLanguages are not guaranteed to be valid. You'll want to check them. HTTP 1.1 uses an older recommendation for language tags and there's nothing stopping someone from sending gibberish in the language header.

                這篇關于.NET 3.5 中的 CultureInfo 類支持哪些文化?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

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

                相關文檔推薦

                Ignore whitespace while reading XML(讀取 XML 時忽略空格)
                extracting just page text using HTMLAgilityPack(使用 HTMLAgilityPack 僅提取頁面文本)
                C# extracting data from XML(C# 從 XML 中提取數據)
                Read a XML (from a string) and get some fields - Problems reading XML(讀取 XML(從字符串)并獲取一些字段 - 讀取 XML 時出現問題)
                Reading large XML documents in .net(在 .net 中讀取大型 XML 文檔)
                How to create folder in Google Drive using .NET API?(如何使用 .NET API 在 Google Drive 中創建文件夾?)

                    • <bdo id='AIz0P'></bdo><ul id='AIz0P'></ul>
                          <tbody id='AIz0P'></tbody>

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

                        <legend id='AIz0P'><style id='AIz0P'><dir id='AIz0P'><q id='AIz0P'></q></dir></style></legend>

                        <i id='AIz0P'><tr id='AIz0P'><dt id='AIz0P'><q id='AIz0P'><span id='AIz0P'><b id='AIz0P'><form id='AIz0P'><ins id='AIz0P'></ins><ul id='AIz0P'></ul><sub id='AIz0P'></sub></form><legend id='AIz0P'></legend><bdo id='AIz0P'><pre id='AIz0P'><center id='AIz0P'></center></pre></bdo></b><th id='AIz0P'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='AIz0P'><tfoot id='AIz0P'></tfoot><dl id='AIz0P'><fieldset id='AIz0P'></fieldset></dl></div>
                        <tfoot id='AIz0P'></tfoot>
                          主站蜘蛛池模板: 欧洲一级视频 | 免费久久精品视频 | 日韩在线欧美 | 欧洲一级毛片 | 不卡一区 | 永久免费在线观看 | 午夜免费在线电影 | 国产激情视频在线 | 欧美成人精品激情在线观看 | 中文字幕色站 | 91成人在线视频 | 成人日b视频 | 精品一区二区观看 | 久久久精品在线 | 亚洲男人的天堂网站 | 国产精品视频一区二区三区四蜜臂 | 91精品一区二区三区久久久久久 | 久久久久国产一区二区三区 | 国产免费一区二区三区免费视频 | 91av在线看 | 黄色一级电影免费观看 | 在线观看黄色大片 | 理论片午午伦夜理片影院 | 久久综合一区 | 国产精品久久久久久久久久99 | 99精品九九 | 久久一级 | 日韩在线视频观看 | 国产精品久久久久久中文字 | 久久久精品一区二区 | 午夜精品一区二区三区在线观看 | 一区二区三区国产精品 | 亚洲天堂中文字幕 | 国产精品国产成人国产三级 | 免费的av网站| 成人福利电影 | 涩涩视频在线观看 | 美女福利视频网站 | 国产一区二区在线播放 | 91大神在线看 | 久久精品69 |