DataSourceControl クラス

定義

データ バインド コントロールへのデータ ソースを表すコントロールの基本クラスとして機能します。

public ref class DataSourceControl abstract : System::Web::UI::Control, System::ComponentModel::IListSource, System::Web::UI::IDataSource
[System.ComponentModel.Bindable(false)]
public abstract class DataSourceControl : System.Web.UI.Control, System.ComponentModel.IListSource, System.Web.UI.IDataSource
[<System.ComponentModel.Bindable(false)>]
type DataSourceControl = class
    inherit Control
    interface IDataSource
    interface IListSource
Public MustInherit Class DataSourceControl
Inherits Control
Implements IDataSource, IListSource
継承
DataSourceControl
派生
属性
実装

次のコード例は、クラスが DataSourceControl クラスを拡張する方法を示しています。 CsvDataSource コントロールは、.csv ファイルに格納されているコンマ区切りのファイル データを表します。 基底クラスの実装は機能しないため、CsvDataSource クラスは、GetViewGetViewNames、およびその他のメソッドの独自の実装を提供します。

using System;
using System.Collections;
using System.Data;
using System.IO;
using System.Security.Permissions;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

// The CsvDataSource is a data source control that retrieves its
// data from a comma-separated value file.
[AspNetHostingPermission(SecurityAction.Demand, Level=AspNetHostingPermissionLevel.Minimal)]
public class CsvDataSource : DataSourceControl
{
    public CsvDataSource() : base() {}

    // The comma-separated value file to retrieve data from.
    public string FileName {
        get {
            return ((CsvDataSourceView)this.GetView(String.Empty)).SourceFile;
        }
        set {
            // Only set if it is different.
            if ( ((CsvDataSourceView)this.GetView(String.Empty)).SourceFile != value) {
                ((CsvDataSourceView)this.GetView(String.Empty)).SourceFile = value;
                RaiseDataSourceChangedEvent(EventArgs.Empty);
            }
        }
    }

    // Do not add the column names as a data row. Infer columns if the CSV file does
    // not include column names.
    public bool IncludesColumnNames {
        get {
            return ((CsvDataSourceView)this.GetView(String.Empty)).IncludesColumnNames;
        }
        set {
            // Only set if it is different.
            if ( ((CsvDataSourceView)this.GetView(String.Empty)).IncludesColumnNames != value) {
                ((CsvDataSourceView)this.GetView(String.Empty)).IncludesColumnNames = value;
                RaiseDataSourceChangedEvent(EventArgs.Empty);
            }
        }
    }

    // Return a strongly typed view for the current data source control.
    private CsvDataSourceView view = null;
    protected override DataSourceView GetView(string viewName) {
        if (null == view) {
            view = new CsvDataSourceView(this, String.Empty);
        }
        return view;
    }
    // The ListSourceHelper class calls GetList, which
    // calls the DataSourceControl.GetViewNames method.
    // Override the original implementation to return
    // a collection of one element, the default view name.
    protected override ICollection GetViewNames() {
        ArrayList al = new ArrayList(1);
        al.Add(CsvDataSourceView.DefaultViewName);
        return al as ICollection;
    }
}

// The CsvDataSourceView class encapsulates the
// capabilities of the CsvDataSource data source control.
public class CsvDataSourceView : DataSourceView
{

    public CsvDataSourceView(IDataSource owner, string name) :base(owner, DefaultViewName) {
    }

    // The data source view is named. However, the CsvDataSource
    // only supports one view, so the name is ignored, and the
    // default name used instead.
    public static string DefaultViewName = "CommaSeparatedView";

    // The location of the .csv file.
    private string sourceFile = String.Empty;
    internal string SourceFile {
        get {
            return sourceFile;
        }
        set {
            // Use MapPath when the SourceFile is set, so that files local to the
            // current directory can be easily used.
            string mappedFileName = HttpContext.Current.Server.MapPath(value);
            sourceFile = mappedFileName;
        }
    }

    // Do not add the column names as a data row. Infer columns if the CSV file does
    // not include column names.
    private bool columns = false;
    internal bool IncludesColumnNames {
        get {
            return columns;
        }
        set {
            columns = value;
        }
    }

    // Get data from the underlying data source.
    // Build and return a DataView, regardless of mode.
    protected override IEnumerable ExecuteSelect(DataSourceSelectArguments selectArgs) {
        IEnumerable dataList = null;
        // Open the .csv file.
        if (File.Exists(this.SourceFile)) {
            DataTable data = new DataTable();

            // Open the file to read from.
            using (StreamReader sr = File.OpenText(this.SourceFile)) {
                // Parse the line
                string s = "";
                string[] dataValues;
                DataColumn col;

                // Do the following to add schema.
                dataValues = sr.ReadLine().Split(',');
                // For each token in the comma-delimited string, add a column
                // to the DataTable schema.
                foreach (string token in dataValues) {
                    col = new DataColumn(token,typeof(string));
                    data.Columns.Add(col);
                }

                // Do not add the first row as data if the CSV file includes column names.
                if (! IncludesColumnNames)
                    data.Rows.Add(CopyRowData(dataValues, data.NewRow()));

                // Do the following to add data.
                while ((s = sr.ReadLine()) != null) {
                    dataValues = s.Split(',');
                    data.Rows.Add(CopyRowData(dataValues, data.NewRow()));
                }
            }
            data.AcceptChanges();
            DataView dataView = new DataView(data);
            if (!string.IsNullOrEmpty(selectArgs.SortExpression)) {
                dataView.Sort = selectArgs.SortExpression;
            }
            dataList = dataView;
        }
        else {
            throw new System.Configuration.ConfigurationErrorsException("File not found, " + this.SourceFile);
        }

        if (null == dataList) {
            throw new InvalidOperationException("No data loaded from data source.");
        }

        return dataList;
    }

    private DataRow CopyRowData(string[] source, DataRow target) {
        try {
            for (int i = 0;i < source.Length;i++) {
                target[i] = source[i];
            }
        }
        catch (System.IndexOutOfRangeException) {
            // There are more columns in this row than
            // the original schema allows.  Stop copying
            // and return the DataRow.
            return target;
        }
        return target;
    }
    // The CsvDataSourceView does not currently
    // permit deletion. You can modify or extend
    // this sample to do so.
    public override bool CanDelete {
        get {
            return false;
        }
    }
    protected override int ExecuteDelete(IDictionary keys, IDictionary values)
    {
        throw new NotSupportedException();
    }
    // The CsvDataSourceView does not currently
    // permit insertion of a new record. You can
    // modify or extend this sample to do so.
    public override bool CanInsert {
        get {
            return false;
        }
    }
    protected override int ExecuteInsert(IDictionary values)
    {
        throw new NotSupportedException();
    }
    // The CsvDataSourceView does not currently
    // permit update operations. You can modify or
    // extend this sample to do so.
    public override bool CanUpdate {
        get {
            return false;
        }
    }
    protected override int ExecuteUpdate(IDictionary keys, IDictionary values, IDictionary oldValues)
    {
        throw new NotSupportedException();
    }
}
Imports System.Collections
Imports System.Data
Imports System.IO
Imports System.Security.Permissions
Imports System.Web
Imports System.Web.UI
Imports System.Web.UI.WebControls

Namespace Samples.AspNet.VB.Controls

' The CsvDataSource is a data source control that retrieves its
' data from a comma-separated value file.
<AspNetHostingPermission(SecurityAction.Demand, Level:=AspNetHostingPermissionLevel.Minimal)> _
Public Class CsvDataSource
   Inherits DataSourceControl

   Public Sub New()
   End Sub

   ' The comma-separated value file to retrieve data from.
   Public Property FileName() As String
      Get
         Return CType(Me.GetView([String].Empty), CsvDataSourceView).SourceFile
      End Get
      Set
         ' Only set if it is different.
         If CType(Me.GetView([String].Empty), CsvDataSourceView).SourceFile <> value Then
            CType(Me.GetView([String].Empty), CsvDataSourceView).SourceFile = value
            RaiseDataSourceChangedEvent(EventArgs.Empty)
         End If
      End Set
   End Property

   ' Do not add the column names as a data row. Infer columns if the CSV file does
   ' not include column names.

   Public Property IncludesColumnNames() As Boolean
      Get
         Return CType(Me.GetView([String].Empty), CsvDataSourceView).IncludesColumnNames
      End Get
      Set
         ' Only set if it is different.
         If CType(Me.GetView([String].Empty), CsvDataSourceView).IncludesColumnNames <> value Then
            CType(Me.GetView([String].Empty), CsvDataSourceView).IncludesColumnNames = value
            RaiseDataSourceChangedEvent(EventArgs.Empty)
         End If
      End Set
   End Property


   ' Return a strongly typed view for the current data source control.
   Private view As CsvDataSourceView = Nothing

   Protected Overrides Function GetView(viewName As String) As DataSourceView
      If view Is Nothing Then
         view = New CsvDataSourceView(Me, String.Empty)
      End If
      Return view
   End Function 'GetView

   ' The ListSourceHelper class calls GetList, which
   ' calls the DataSourceControl.GetViewNames method.
   ' Override the original implementation to return
   ' a collection of one element, the default view name.
   Protected Overrides Function GetViewNames() As ICollection
      Dim al As New ArrayList(1)
      al.Add(CsvDataSourceView.DefaultViewName)
      Return CType(al, ICollection)
   End Function 'GetViewNames

End Class


' The CsvDataSourceView class encapsulates the
' capabilities of the CsvDataSource data source control.

Public Class CsvDataSourceView
   Inherits DataSourceView

   Public Sub New(owner As IDataSource, name As String)
       MyBase.New(owner, DefaultViewName)
   End Sub

   ' The data source view is named. However, the CsvDataSource
   ' only supports one view, so the name is ignored, and the
   ' default name used instead.
   Public Shared DefaultViewName As String = "CommaSeparatedView"

   ' The location of the .csv file.
   Private aSourceFile As String = [String].Empty

   Friend Property SourceFile() As String
      Get
         Return aSourceFile
      End Get
      Set
         ' Use MapPath when the SourceFile is set, so that files local to the
         ' current directory can be easily used.
         Dim mappedFileName As String
         mappedFileName = HttpContext.Current.Server.MapPath(value)
         aSourceFile = mappedFileName
      End Set
   End Property

   ' Do not add the column names as a data row. Infer columns if the CSV file does
   ' not include column names.
   Private columns As Boolean = False

   Friend Property IncludesColumnNames() As Boolean
      Get
         Return columns
      End Get
      Set
         columns = value
      End Set
   End Property

   ' Get data from the underlying data source.
   ' Build and return a DataView, regardless of mode.
   Protected Overrides Function ExecuteSelect(selectArgs As DataSourceSelectArguments) _
    As System.Collections.IEnumerable
      Dim dataList As IEnumerable = Nothing
      ' Open the .csv file.
      If File.Exists(Me.SourceFile) Then
         Dim data As New DataTable()

         ' Open the file to read from.
         Dim sr As StreamReader = File.OpenText(Me.SourceFile)

         Try
            ' Parse the line
            Dim dataValues() As String
            Dim col As DataColumn

            ' Do the following to add schema.
            dataValues = sr.ReadLine().Split(","c)
            ' For each token in the comma-delimited string, add a column
            ' to the DataTable schema.
            Dim token As String
            For Each token In dataValues
               col = New DataColumn(token, System.Type.GetType("System.String"))
               data.Columns.Add(col)
            Next token

            ' Do not add the first row as data if the CSV file includes column names.
            If Not IncludesColumnNames Then
               data.Rows.Add(CopyRowData(dataValues, data.NewRow()))
            End If

            ' Do the following to add data.
            Dim s As String
            Do
               s = sr.ReadLine()
               If Not s Is Nothing Then
                   dataValues = s.Split(","c)
                   data.Rows.Add(CopyRowData(dataValues, data.NewRow()))
               End If
            Loop Until s Is Nothing

         Finally
            sr.Close()
         End Try

         data.AcceptChanges()
         Dim dataView As New DataView(data)
         If Not selectArgs.SortExpression Is String.Empty Then
             dataView.Sort = selectArgs.SortExpression
         End If
         dataList = dataView
      Else
         Throw New System.Configuration.ConfigurationErrorsException("File not found, " + Me.SourceFile)
      End If

      If dataList is Nothing Then
         Throw New InvalidOperationException("No data loaded from data source.")
      End If

      Return dataList
   End Function 'ExecuteSelect


   Private Function CopyRowData([source]() As String, target As DataRow) As DataRow
      Try
         Dim i As Integer
         For i = 0 To [source].Length - 1
            target(i) = [source](i)
         Next i
      Catch iore As IndexOutOfRangeException
         ' There are more columns in this row than
         ' the original schema allows.  Stop copying
         ' and return the DataRow.
         Return target
      End Try
      Return target
   End Function 'CopyRowData

   ' The CsvDataSourceView does not currently
   ' permit deletion. You can modify or extend
   ' this sample to do so.
   Public Overrides ReadOnly Property CanDelete() As Boolean
      Get
         Return False
      End Get
   End Property

   Protected Overrides Function ExecuteDelete(keys As IDictionary, values As IDictionary) As Integer
      Throw New NotSupportedException()
   End Function 'ExecuteDelete

   ' The CsvDataSourceView does not currently
   ' permit insertion of a new record. You can
   ' modify or extend this sample to do so.
   Public Overrides ReadOnly Property CanInsert() As Boolean
      Get
         Return False
      End Get
   End Property

   Protected Overrides Function ExecuteInsert(values As IDictionary) As Integer
      Throw New NotSupportedException()
   End Function 'ExecuteInsert

   ' The CsvDataSourceView does not currently
   ' permit update operations. You can modify or
   ' extend this sample to do so.
   Public Overrides ReadOnly Property CanUpdate() As Boolean
      Get
         Return False
      End Get
   End Property

   Protected Overrides Function ExecuteUpdate(keys As IDictionary, _
                                              values As IDictionary, _
                                              oldValues As IDictionary) As Integer
      Throw New NotSupportedException()
   End Function 'ExecuteUpdate

End Class
End Namespace

次のコード例は、Web フォームで CsvDataSource コントロールを使用する方法を示しています。

<%@ Page Language="C#" %>
<%@ Register Tagprefix="aspSample"
             Namespace="Samples.AspNet.CS.Controls" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
  <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
    <form id="form1" runat="server">

      <asp:gridview
          id="GridView1"
          runat="server"
          allowsorting="True"
          datasourceid="CsvDataSource1" />

      <aspSample:CsvDataSource
          id = "CsvDataSource1"
          runat = "server"
          filename = "sample.csv"
          includescolumnnames="True" />

    </form>
  </body>
</html>
<%@ Page Language="VB" %>
<%@ Register Tagprefix="aspSample"
             Namespace="Samples.AspNet.VB.Controls" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
        <form id="form1" runat="server">

            <asp:gridview
                id="GridView1"
                runat="server"
                allowsorting="True"
                datasourceid="CsvDataSource1" />

            <aspSample:CsvDataSource
                id = "CsvDataSource1"
                runat = "server"
                filename = "sample.csv"
                includescolumnnames="True" />

        </form>
    </body>
</html>

注釈

ASP.NET は、Web サーバー コントロールが一貫した方法でデータにバインドできるようにするコントロール データ バインディング アーキテクチャをサポートしています。 データにバインドする Web サーバー コントロールは、データ バインド コントロールと呼ばれ、そのバインドを容易にするクラスはデータ ソース コントロールと呼ばれます。 データ ソース コントロールは、リレーショナル データベース、ファイル、ストリーム、ビジネス オブジェクトなどの任意のデータ ソースを表すことができます。 データ ソース コントロールは、基になるデータのソースまたは形式に関係なく、データ バインド コントロールに対して一貫した方法でデータを表示します。

SqlDataSourceAccessDataSourceXmlDataSourceなど、ASP.NET で提供されるデータ ソース コントロールを使用して、ほとんどの Web 開発タスクを実行します。 独自のカスタム データ ソース 管理を実装する場合は、基本 DataSourceControl クラスを使用します。

IDataSource インターフェイスを実装するクラスはデータ ソース コントロールですが、ほとんどの ASP.NET データ ソース コントロールは抽象 DataSourceControl クラスを拡張し、IDataSource インターフェイスの基本実装を提供します。 DataSourceControl クラスには、IListSource インターフェイスの実装も用意されています。これにより、データ ソース コントロールをデータ バインド コントロールの DataSource プロパティにプログラムで割り当て、基本リストとしてコントロールにデータを返すこともできます。

DataBoundControl クラスから派生する ASP.NET コントロールは、データ ソース コントロールにバインドできます。 DataBoundControl がデータ ソース コントロールにバインドされると、実行時にデータ バインディングが自動的に実行されます。 DataSource または DataSourceID プロパティを公開し、基本的なデータ バインディングをサポートするが、DataBoundControlから派生していない ASP.NET コントロールでデータ ソース コントロールを使用することもできます。 これらのデータ バインド コントロールを使用する場合は、DataBind メソッドを明示的に呼び出す必要があります。 データ バインディングの詳細については、「ASP.NET データ アクセス コンテンツ マップの」を参照してください。

データ ソース コントロールは、DataSourceControl オブジェクトとそれに関連付けられているデータ のリスト (データ ソース ビューと呼ばれます) の組み合わせと考えることができます。 データの各リストは、DataSourceView オブジェクトによって表されます。 基になるデータ ストレージには 1 つ以上のデータ リストが含まれているため、DataSourceControl は常に 1 つ以上の名前付き DataSourceView オブジェクトに関連付けられます。 IDataSource インターフェイスは、すべてのデータ ソース コントロールがデータ ソース ビューの操作に使用するメソッドを定義します。GetViewNames メソッドは、現在データ ソース コントロールに関連付けられているデータ ソース ビューを列挙するために使用され、GetView メソッドを使用して特定のデータ ソース ビュー インスタンスを名前で取得します。

また、データ ソース管理は、呼び出し元がデータへのアクセスに使用する 2 つの異なるインターフェイスと考えることができます。 DataSourceControl クラスは、Web フォーム ページを開発するときにページ開発者が直接操作するインターフェイスであり、DataSourceView クラスは、データ バインド コントロールとデータ バインド コントロールの作成者が対話するインターフェイスです。 DataSourceView オブジェクトは実行時にのみ使用できるため、データ ソース コントロールまたはデータ ソース ビュー用に永続化された状態は、データ ソース コントロールによって直接公開される必要があります。

ASP.NET データ ソース コントロールの視覚的なレンダリングはありません。これらはコントロールとして実装されるため、宣言によって作成したり、必要に応じて状態管理に参加したりすることができます。 その結果、データ ソース コントロールでは、EnableThemingSkinIDなどの視覚的な機能はサポートされません。

コンストラクター

DataSourceControl()

DataSourceControl クラスの新しいインスタンスを初期化します。

プロパティ

Adapter

コントロールのブラウザー固有のアダプターを取得します。

(継承元 Control)
AppRelativeTemplateSourceDirectory

このコントロールを含む Page または UserControl オブジェクトのアプリケーション相対仮想ディレクトリを取得または設定します。

(継承元 Control)
BindingContainer

このコントロールのデータ バインディングを含むコントロールを取得します。

(継承元 Control)
ChildControlsCreated

サーバー コントロールの子コントロールが作成されているかどうかを示す値を取得します。

(継承元 Control)
ClientID

ASP.NET によって生成されたサーバー コントロール識別子を取得します。

ClientIDMode

このプロパティは、データ ソース コントロールには使用されません。

ClientIDMode

ClientID プロパティの値を生成するために使用するアルゴリズムを取得または設定します。

(継承元 Control)
ClientIDSeparator

ClientID プロパティで使用される区切り文字を表す文字値を取得します。

(継承元 Control)
Context

現在の Web 要求のサーバー コントロールに関連付けられている HttpContext オブジェクトを取得します。

(継承元 Control)
Controls

UI 階層内の指定したサーバー コントロールの子コントロールを表す ControlCollection オブジェクトを取得します。

DataItemContainer

名前付けコンテナーが IDataItemContainerを実装している場合は、名前付けコンテナーへの参照を取得します。

(継承元 Control)
DataKeysContainer

名前付けコンテナーが IDataKeysControlを実装している場合は、名前付けコンテナーへの参照を取得します。

(継承元 Control)
DesignMode

コントロールがデザイン サーフェイスで使用されているかどうかを示す値を取得します。

(継承元 Control)
EnableTheming

このコントロールがテーマをサポートしているかどうかを示す値を取得します。

EnableViewState

サーバー コントロールがそのビューステートを保持するかどうか、およびそれに含まれる子コントロールのビューステートを要求側クライアントに保持するかどうかを示す値を取得または設定します。

(継承元 Control)
Events

コントロールのイベント ハンドラー デリゲートの一覧を取得します。 このプロパティは読み取り専用です。

(継承元 Control)
HasChildViewState

現在のサーバー コントロールの子コントロールに保存されたビューステート設定があるかどうかを示す値を取得します。

(継承元 Control)
ID

サーバー コントロールに割り当てられたプログラム識別子を取得または設定します。

(継承元 Control)
IdSeparator

コントロール識別子を分離するために使用する文字を取得します。

(継承元 Control)
IsChildControlStateCleared

このコントロール内に含まれるコントロールがコントロールの状態を持っているかどうかを示す値を取得します。

(継承元 Control)
IsTrackingViewState

サーバー コントロールがビュー ステートへの変更を保存するかどうかを示す値を取得します。

(継承元 Control)
IsViewStateEnabled

このコントロールに対してビューステートが有効かどうかを示す値を取得します。

(継承元 Control)
LoadViewStateByID

インデックスの代わりに ID して、コントロールがビューステートの読み込みに関与するかどうかを示す値を取得します。

(継承元 Control)
NamingContainer

サーバー コントロールの名前付けコンテナーへの参照を取得します。このコンテナーは、同じ ID プロパティ値を持つサーバー コントロール間で区別するための一意の名前空間を作成します。

(継承元 Control)
Page

サーバー コントロールを含む Page インスタンスへの参照を取得します。

(継承元 Control)
Parent

ページ コントロール階層内のサーバー コントロールの親コントロールへの参照を取得します。

(継承元 Control)
RenderingCompatibility

レンダリングされた HTML と互換性のある ASP.NET バージョンを指定する値を取得します。

(継承元 Control)
Site

デザイン サーフェイスにレンダリングされるときに、現在のコントロールをホストするコンテナーに関する情報を取得します。

(継承元 Control)
SkinID

DataSourceControl コントロールに適用するスキンを取得します。

TemplateControl

このコントロールを含むテンプレートへの参照を取得または設定します。

(継承元 Control)
TemplateSourceDirectory

現在のサーバー コントロールを含む Page または UserControl の仮想ディレクトリを取得します。

(継承元 Control)
UniqueID

サーバー コントロールの階層的に修飾された一意の識別子を取得します。

(継承元 Control)
ValidateRequestMode

コントロールがブラウザーからのクライアント入力で潜在的に危険な値をチェックするかどうかを示す値を取得または設定します。

(継承元 Control)
ViewState

同じページに対する複数の要求にわたってサーバー コントロールのビューステートを保存および復元できる状態情報のディクショナリを取得します。

(継承元 Control)
ViewStateIgnoresCase

StateBag オブジェクトで大文字と小文字が区別されないかどうかを示す値を取得します。

(継承元 Control)
ViewStateMode

このコントロールのビューステート モードを取得または設定します。

(継承元 Control)
Visible

コントロールが視覚的に表示されるかどうかを示す値を取得または設定します。

メソッド

AddedControl(Control, Int32)

子コントロールが Control オブジェクトの Controls コレクションに追加された後に呼び出されます。

(継承元 Control)
AddParsedSubObject(Object)

XML または HTML のいずれかの要素が解析されたことをサーバー コントロールに通知し、その要素をサーバー コントロールの ControlCollection オブジェクトに追加します。

(継承元 Control)
ApplyStyleSheetSkin(Page)

ページ スタイル シートで定義されているスタイル プロパティをコントロールに適用します。

BeginRenderTracing(TextWriter, Object)

レンダリング データのデザイン時トレースを開始します。

(継承元 Control)
BuildProfileTree(String, Boolean)

サーバー コントロールに関する情報を収集し、ページのトレースが有効になっているときに表示される Trace プロパティに渡します。

(継承元 Control)
ClearCachedClientID()

キャッシュされた ClientID 値を nullに設定します。

(継承元 Control)
ClearChildControlState()

サーバー コントロールの子コントロールのコントロール状態情報を削除します。

(継承元 Control)
ClearChildState()

すべてのサーバー コントロールの子コントロールのビューステート情報とコントロール状態情報を削除します。

(継承元 Control)
ClearChildViewState()

すべてのサーバー コントロールの子コントロールのビューステート情報を削除します。

(継承元 Control)
ClearEffectiveClientIDMode()

現在のコントロール インスタンスおよび子コントロールの ClientIDMode プロパティを Inheritに設定します。

(継承元 Control)
CreateChildControls()

ASP.NET ページ フレームワークによって呼び出され、コンポジション ベースの実装を使用して、ポスト バックまたはレンダリングの準備として含まれる子コントロールを作成するサーバー コントロールに通知します。

(継承元 Control)
CreateControlCollection()

子コントロールを格納するコレクションを作成します。

DataBind()

呼び出されたサーバー コントロールとそのすべての子コントロールにデータ ソースをバインドします。

(継承元 Control)
DataBind(Boolean)

DataBinding イベントを発生させるオプションを使用して、呼び出されたサーバー コントロールとそのすべての子コントロールにデータ ソースをバインドします。

(継承元 Control)
DataBindChildren()

データ ソースをサーバー コントロールの子コントロールにバインドします。

(継承元 Control)
Dispose()

サーバー コントロールがメモリから解放される前に、最終的なクリーンアップを実行できるようにします。

(継承元 Control)
EndRenderTracing(TextWriter, Object)

レンダリング データのデザイン時トレースを終了します。

(継承元 Control)
EnsureChildControls()

サーバー コントロールに子コントロールが含まれているかどうかを判断します。 そうでない場合は、子コントロールが作成されます。

(継承元 Control)
EnsureID()

識別子が割り当てられないコントロールの識別子を作成します。

(継承元 Control)
Equals(Object)

指定したオブジェクトが現在のオブジェクトと等しいかどうかを判断します。

(継承元 Object)
FindControl(String, Int32)

pathOffset パラメーターで指定された、指定した id と整数を持つサーバー コントロールの現在の名前付けコンテナーを検索します。これは、検索に役立ちます。 このバージョンの FindControl メソッドはオーバーライドしないでください。

(継承元 Control)
FindControl(String)

指定した id パラメーターを使用して、サーバー コントロールの現在の名前付けコンテナーを検索します。

Focus()

入力フォーカスをコントロールに設定します。

GetDesignModeState()

コントロールのデザイン時データを取得します。

(継承元 Control)
GetHashCode()

既定のハッシュ関数として機能します。

(継承元 Object)
GetRouteUrl(Object)

ルート パラメーターのセットに対応する URL を取得します。

(継承元 Control)
GetRouteUrl(RouteValueDictionary)

ルート パラメーターのセットに対応する URL を取得します。

(継承元 Control)
GetRouteUrl(String, Object)

ルート パラメーターとルート名のセットに対応する URL を取得します。

(継承元 Control)
GetRouteUrl(String, RouteValueDictionary)

ルート パラメーターとルート名のセットに対応する URL を取得します。

(継承元 Control)
GetType()

現在のインスタンスの Type を取得します。

(継承元 Object)
GetUniqueIDRelativeTo(Control)

指定したコントロールの UniqueID プロパティのプレフィックス部分を返します。

(継承元 Control)
GetView(String)

データ ソース コントロールに関連付けられている名前付きデータ ソース ビューを取得します。

GetViewNames()

DataSourceControl コントロールに関連付けられている DataSourceView オブジェクトの一覧を表す名前のコレクションを取得します。

HasControls()

サーバー コントロールに子コントロールが含まれているかどうかを判断します。

HasEvents()

コントロールまたは子コントロールのイベントが登録されているかどうかを示す値を返します。

(継承元 Control)
IsLiteralContent()

サーバー コントロールがリテラル コンテンツのみを保持するかどうかを決定します。

(継承元 Control)
LoadControlState(Object)

SaveControlState() メソッドによって保存された前のページ要求から制御状態情報を復元します。

(継承元 Control)
LoadViewState(Object)

SaveViewState() メソッドによって保存された前のページ要求からビューステート情報を復元します。

(継承元 Control)
MapPathSecure(String)

仮想パス (絶対パスまたは相対パス) がマップされる物理パスを取得します。

(継承元 Control)
MemberwiseClone()

現在の Objectの簡易コピーを作成します。

(継承元 Object)
OnBubbleEvent(Object, EventArgs)

サーバー コントロールのイベントがページの UI サーバー コントロール階層に渡されるかどうかを判断します。

(継承元 Control)
OnDataBinding(EventArgs)

DataBinding イベントを発生させます。

(継承元 Control)
OnInit(EventArgs)

Init イベントを発生させます。

(継承元 Control)
OnLoad(EventArgs)

Load イベントを発生させます。

(継承元 Control)
OnPreRender(EventArgs)

PreRender イベントを発生させます。

(継承元 Control)
OnUnload(EventArgs)

Unload イベントを発生させます。

(継承元 Control)
OpenFile(String)

ファイルの読み取りに使用する Stream を取得します。

(継承元 Control)
RaiseBubbleEvent(Object, EventArgs)

イベントのソースとその情報をコントロールの親に割り当てます。

(継承元 Control)
RaiseDataSourceChangedEvent(EventArgs)

DataSourceChanged イベントを発生させます。

RemovedControl(Control)

Control オブジェクトの Controls コレクションから子コントロールが削除された後に呼び出されます。

(継承元 Control)
Render(HtmlTextWriter)

指定した HtmlTextWriter オブジェクトにサーバー コントロールのコンテンツを送信します。このオブジェクトは、クライアントにレンダリングされるコンテンツを書き込みます。

(継承元 Control)
RenderChildren(HtmlTextWriter)

指定した HtmlTextWriter オブジェクトにサーバー コントロールの子のコンテンツを出力します。このオブジェクトは、クライアントにレンダリングされるコンテンツを書き込みます。

(継承元 Control)
RenderControl(HtmlTextWriter, ControlAdapter)

指定された ControlAdapter オブジェクトを使用して、指定された HtmlTextWriter オブジェクトにサーバー コントロールのコンテンツを出力します。

(継承元 Control)
RenderControl(HtmlTextWriter)

指定された HtmlTextWriter オブジェクトにサーバー コントロールの内容を出力し、トレースが有効になっている場合は、コントロールに関するトレース情報を格納します。

ResolveAdapter()

指定したコントロールのレンダリングを担当するコントロール アダプターを取得します。

(継承元 Control)
ResolveClientUrl(String)

ブラウザーで使用できる URL を取得します。

(継承元 Control)
ResolveUrl(String)

URL を、要求側クライアントで使用できる URL に変換します。

(継承元 Control)
SaveControlState()

ページがサーバーにポストバックされた時刻以降に発生したすべてのサーバー 制御状態の変更を保存します。

(継承元 Control)
SaveViewState()

ページがサーバーにポストバックされてから発生したサーバー コントロールのビューステートの変更を保存します。

(継承元 Control)
SetDesignModeState(IDictionary)

コントロールのデザイン時データを設定します。

(継承元 Control)
SetRenderMethodDelegate(RenderMethod)

サーバー コントロールとそのコンテンツを親コントロールにレンダリングするイベント ハンドラー デリゲートを割り当てます。

(継承元 Control)
SetTraceData(Object, Object, Object)

トレース オブジェクト、トレース データ キー、およびトレース データ値を使用して、レンダリング データのデザイン時トレース用のトレース データを設定します。

(継承元 Control)
SetTraceData(Object, Object)

トレース データ キーとトレース データ値を使用して、レンダリング データのデザイン時トレース用のトレース データを設定します。

(継承元 Control)
ToString()

現在のオブジェクトを表す文字列を返します。

(継承元 Object)
TrackViewState()

ビューステートの変更をサーバー コントロールに追跡して、サーバー コントロールの StateBag オブジェクトに格納できるようにします。 このオブジェクトには、ViewState プロパティを使用してアクセスできます。

(継承元 Control)

イベント

DataBinding

サーバー コントロールがデータ ソースにバインドされるときに発生します。

(継承元 Control)
Disposed

サーバー コントロールがメモリから解放されたときに発生します。これは、ASP.NET ページが要求されたときに、サーバー コントロールライフサイクルの最後のステージです。

(継承元 Control)
Init

サーバー コントロールが初期化されるときに発生します。これは、そのライフサイクルの最初のステップです。

(継承元 Control)
Load

サーバー コントロールが Page オブジェクトに読み込まれるときに発生します。

(継承元 Control)
PreRender

Control オブジェクトが読み込まれた後、レンダリングの前に発生します。

(継承元 Control)
Unload

サーバー コントロールがメモリからアンロードされるときに発生します。

(継承元 Control)

明示的なインターフェイスの実装

IControlBuilderAccessor.ControlBuilder

このメンバーの説明については、ControlBuilderを参照してください。

(継承元 Control)
IControlDesignerAccessor.GetDesignModeState()

このメンバーの説明については、GetDesignModeState()を参照してください。

(継承元 Control)
IControlDesignerAccessor.SetDesignModeState(IDictionary)

このメンバーの説明については、SetDesignModeState(IDictionary)を参照してください。

(継承元 Control)
IControlDesignerAccessor.SetOwnerControl(Control)

このメンバーの説明については、SetOwnerControl(Control)を参照してください。

(継承元 Control)
IControlDesignerAccessor.UserData

このメンバーの説明については、UserDataを参照してください。

(継承元 Control)
IDataBindingsAccessor.DataBindings

このメンバーの説明については、DataBindingsを参照してください。

(継承元 Control)
IDataBindingsAccessor.HasDataBindings

このメンバーの説明については、HasDataBindingsを参照してください。

(継承元 Control)
IDataSource.DataSourceChanged

データ バインド コントロールに影響する方法でデータ ソース コントロールが変更されたときに発生します。

IDataSource.GetView(String)

DataSourceControl コントロールに関連付けられている名前付き DataSourceView オブジェクトを取得します。 一部のデータ ソース コントロールは 1 つのビューのみをサポートし、他のコントロールは複数のビューをサポートします。

IDataSource.GetViewNames()

DataSourceControl コントロールに関連付けられている DataSourceView オブジェクトの一覧を表す名前のコレクションを取得します。

IExpressionsAccessor.Expressions

このメンバーの説明については、Expressionsを参照してください。

(継承元 Control)
IExpressionsAccessor.HasExpressions

このメンバーの説明については、HasExpressionsを参照してください。

(継承元 Control)
IListSource.ContainsListCollection

データ ソース コントロールが 1 つ以上のデータ リストに関連付けられているかどうかを示します。

IListSource.GetList()

データのリストのソースとして使用できるデータ ソース コントロールの一覧を取得します。

IParserAccessor.AddParsedSubObject(Object)

このメンバーの説明については、AddParsedSubObject(Object)を参照してください。

(継承元 Control)

拡張メソッド

FindDataSourceControl(Control)

指定したコントロールのデータ コントロールに関連付けられているデータ ソースを返します。

FindFieldTemplate(Control, String)

指定したコントロールの名前付けコンテナー内の指定した列のフィールド テンプレートを返します。

FindMetaTable(Control)

格納されているデータ コントロールのメタテーブル オブジェクトを返します。

GetDefaultValues(IDataSource)

指定したデータ ソースの既定値のコレクションを取得します。

GetMetaTable(IDataSource)

指定したデータ ソース オブジェクト内のテーブルのメタデータを取得します。

TryGetMetaTable(IDataSource, MetaTable)

テーブル メタデータを使用できるかどうかを判断します。

適用対象

こちらもご覧ください