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

DeviceSpecificChoice クラス

DeviceSpecific の Choice コンストラクトにある選択項目を 1 つ提供します

名前空間: System.Web.UI.MobileControls
アセンブリ: System.Web.Mobile (system.web.mobile.dll 内)
構文構文
Public Class DeviceSpecificChoice
    Implements IParserAccessor, IAttributeAccessor
Dim instance As DeviceSpecificChoice
public class DeviceSpecificChoice : IParserAccessor,
 IAttributeAccessor
public ref class DeviceSpecificChoice : IParserAccessor,
 IAttributeAccessor
public class DeviceSpecificChoice implements
 IParserAccessor, IAttributeAccessor
public class DeviceSpecificChoice implements
 IParserAccessor, IAttributeAccessor
解説解説
使用例使用例

イメージ内の <Choice> 要素表示するコード例次に示しますSource 属性は、Image コントロールの ImageUrl プロパティオーバーライドます。

この例では、ブラウザWML を必要とするか (isWML11)、またはカラー表示サポートしているか (supportsColor) を確認するために関数使用していますが、代わりに Web.config ファイル使用して、これを自動確認するために .NET Framework自動的に使用する <DeviceSpecific> 要素定義することも可能です。

<deviceFilters>
  <filter name="isWML11" 
          compare="PreferredRenderingType" 
          argument="wml11" />
  <filter name="supportsColor"
 
          compare="IsColor" 
          argument="true" />
</deviceFilters>
メモメモ

次のコード サンプルはシングルファイル コード モデル使用しており、分離コード ファイル直接コピーされ場合正常に動作しない可能性あります。このコード サンプルは、拡張子.aspx の空のテキスト ファイルコピーする必要があります詳細については、「ASP.NET Web ページコード モデル」を参照してください

<%@ Page Language="VB" 
    Inherits="System.Web.UI.MobileControls.MobilePage"
 %>
<%@ Register TagPrefix="mobile" 
    Namespace="System.Web.UI.MobileControls"
 
    Assembly="System.Web.Mobile"
 %>
<%@ Import Namespace="System.Web.Mobile"
 %>

<script runat="server">
    Private Function supportsColor(ByVal
 caps As MobileCapabilities, _
        ByVal value As String)
 As Boolean
        
        ' Determine if the browser is not a Web crawler and
        ' can display in color
        If Not caps.Crawler And
 caps.IsColor Then
            Return True
        Else
            Return False
        End If
    End Function

    Private Function isWML11(ByVal
 caps As MobileCapabilities, _
        ByVal value As String)
 As Boolean

        ' Determine if the browser is not a Web crawler and
        ' requires WML markup
        If (Not caps.Crawler) AndAlso
 caps.PreferredRenderingType = _
            MobileCapabilities.PreferredRenderingTypeWml11 Then
            Return True
        Else
            Return False
        End If
    End Function
</script>

<html  >
<body>
    <mobile:form id="form1" runat="server">
        <mobile:Image ID="Image1" runat="server"
 
            AlternateText="Cannot display this image.">
            <DeviceSpecific>
                <choice Filter ="isWML11" ImageURL="wmlImage.wbmp"
 />
                <choice Filter="supportsColor"
 ImageURL="colorImage.gif" />
                <choice ImageURL="monoImg.gif"
 />
            </DeviceSpecific>
        </mobile:Image>
    </mobile:form>
</body>
</html>
<%@ Page Language="C#" 
    Inherits="System.Web.UI.MobileControls.MobilePage" %>
<%@ Register TagPrefix="mobile" 
    Namespace="System.Web.UI.MobileControls" 
    Assembly="System.Web.Mobile" %>
<%@ Import Namespace="System.Web.Mobile" %>

<script runat="server">
    private bool supportsColor(MobileCapabilities
 caps, string optValue)
    {
        // Determine if the browser is not a Web crawler and
        // can display in color
        if (!caps.Crawler && caps.IsColor)
            return true;
        return false;
    }

    private bool isWML11(MobileCapabilities
 caps, string optValue)
    {
        // Determine if the browser is not a Web crawler and
        // requires WML markup
        if (!caps.Crawler && caps.PreferredRenderingType
 ==
            MobileCapabilities.PreferredRenderingTypeWml11)
            return true;
        return false;
    }
</script>

<html  >
<body>
    <mobile:form id="form1" runat="server">
        <mobile:Image ID="Image1" runat="server" 
            AlternateText="Cannot display this image.">
            <DeviceSpecific>
                <choice Filter ="isWML11" ImageURL="wmlImage.wbmp"
 />
                <choice Filter="supportsColor" ImageURL="colorImage.gif"
 />
                <choice ImageURL="monoImg.gif" />
            </DeviceSpecific>
        </mobile:Image>
    </mobile:form>
</body>
</html>
.NET Framework のセキュリティ.NET Frameworkセキュリティ
継承階層継承階層
System.Object
  System.Web.UI.MobileControls.DeviceSpecificChoice
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DeviceSpecificChoice メンバ
System.Web.UI.MobileControls 名前空間
その他の技術情報
DeviceSpecific コントロール概要
<Choice> 要素 (.NET Framework 開発者ガイド)
<DeviceSpecific> 要素

DeviceSpecificChoice コンストラクタ


DeviceSpecificChoice プロパティ


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

関連項目

DeviceSpecificChoice クラス
System.Web.UI.MobileControls 名前空間

その他の技術情報

DeviceSpecific コントロール概要
<Choice> 要素 (.NET Framework 開発者ガイド)
<DeviceSpecific> 要素

DeviceSpecificChoice メソッド


パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
明示的インターフェイスの実装明示的インターフェイス実装
  名前 説明
インターフェイスの明示的な実装 System.Web.UI.IAttributeAccessor.GetAttribute このメンバ説明については、「IAttributeAccessor.GetAttribute」を参照してください
インターフェイスの明示的な実装 System.Web.UI.IAttributeAccessor.SetAttribute このメンバ説明については、「IAttributeAccessor.SetAttribute」を参照してください
インターフェイスの明示的な実装 System.Web.UI.IParserAccessor.AddParsedSubObject このメンバ説明については、「IParserAccessor.AddParsedSubObject」を参照してください
参照参照

関連項目

DeviceSpecificChoice クラス
System.Web.UI.MobileControls 名前空間

その他の技術情報

DeviceSpecific コントロール概要
<Choice> 要素 (.NET Framework 開発者ガイド)
<DeviceSpecific> 要素

DeviceSpecificChoice メンバ

DeviceSpecific の Choice コンストラクトにある選択項目を 1 つ提供します

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


パブリック コンストラクタパブリック コンストラクタ
  名前 説明
パブリック メソッド DeviceSpecificChoice DeviceSpecificChoice クラス新しインスタンス初期化します。
パブリック プロパティパブリック プロパティ
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
明示的インターフェイスの実装明示的インターフェイス実装
  名前 説明
インターフェイスの明示的な実装 System.Web.UI.IAttributeAccessor.GetAttribute このメンバ説明については、「IAttributeAccessor.GetAttribute」を参照してください
インターフェイスの明示的な実装 System.Web.UI.IAttributeAccessor.SetAttribute このメンバ説明については、「IAttributeAccessor.SetAttribute」を参照してください
インターフェイスの明示的な実装 System.Web.UI.IParserAccessor.AddParsedSubObject このメンバ説明については、「IParserAccessor.AddParsedSubObject」を参照してください
参照参照

関連項目

DeviceSpecificChoice クラス
System.Web.UI.MobileControls 名前空間

その他の技術情報

DeviceSpecific コントロール概要
<Choice> 要素 (.NET Framework 開発者ガイド)
<DeviceSpecific> 要素



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

辞書ショートカット

','','','','','','','','','','','','','','','','','',''];function getDictCodeItems(a){return dictCodeList[a]};

すべての辞書の索引

「DeviceSpecificChoice」の関連用語











DeviceSpecificChoiceのお隣キーワード
検索ランキング
';function getSideRankTable(){return sideRankTable};

   

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



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

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

©2025 GRAS Group, Inc.RSS