Suggérer une traduction
 
Suggestions d'autres utilisateurs :

progress indicator
Aucune autre suggestion.
Cliquez pour évaluer et commenter
MSDN
MSDN Library
Développement .NET
.NET Framework 4
Espaces de noms System.Web
System.Web.UI.WebControls
Réduire tout/Développer tout Réduire tout
Affichage du contenu :  côte à côteAffichage du contenu : côte à côte
.NET Framework Class Library
QueryableDataSourceView Class

Supports the QueryableDataSource control and provides an interface for data-bound controls to perform LINQ data operations.

System..::.Object
  System.Web.UI..::.DataSourceView
    System.Web.UI.WebControls..::.QueryableDataSourceView
      System.Web.UI.WebControls..::.ContextDataSourceView

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web.Extensions (in System.Web.Extensions.dll)
Visual Basic
Public MustInherit Class QueryableDataSourceView _
    Inherits DataSourceView _
    Implements IStateManager
C#
public abstract class QueryableDataSourceView : DataSourceView, 
    IStateManager
Visual C++
public ref class QueryableDataSourceView abstract : public DataSourceView, 
    IStateManager
F#
[<AbstractClass>]
type QueryableDataSourceView =  
    class
        inherit DataSourceView
        interface IStateManager
    end

The QueryableDataSourceView type exposes the following members.

  NameDescription
Protected methodQueryableDataSourceViewInitializes a new instance of the QueryableDataSourceView class.
Top
  NameDescription
Public propertyAutoGenerateOrderByClauseGets or sets a value that indicates whether the QueryableDataSourceView object that is associated with the current QueryableDataSource control creates a dynamic an OrderBy clause.
Public propertyAutoGenerateWhereClauseGets or sets a value that indicates whether the QueryableDataSourceView object that is associated with the current QueryableDataSource control creates a dynamic Where clause.
Public propertyAutoPageGets or sets a value that indicates whether the QueryableDataSourceView object that is associated with the current QueryableDataSource control supports paging by default.
Public propertyAutoSortGets or sets a value that indicates whether the QueryableDataSourceView object that is associated with the current QueryableDataSource control supports sorting by default.
Public propertyCanDeleteGets a value that indicates whether the QueryableDataSourceView object that is associated with the current QueryableDataSource control supports delete operations. (Overrides DataSourceView..::.CanDelete.)
Public propertyCanInsertGets a value that indicates whether the QueryableDataSourceView object that is associated with the current QueryableDataSource control supports insert operations. (Overrides DataSourceView..::.CanInsert.)
Public propertyCanPageGets a value that indicates whether the QueryableDataSourceView object that is associated with the current QueryableDataSource control supports paging. (Overrides DataSourceView..::.CanPage.)
Public propertyCanRetrieveTotalRowCountGets a value that indicates whether the QueryableDataSourceView object that is associated with the current QueryableDataSource control supports retrieving the total number of data rows, and retrieving the data. (Overrides DataSourceView..::.CanRetrieveTotalRowCount.)
Public propertyCanSortGets a value that indicates whether the QueryableDataSourceView object that is associated with the current QueryableDataSource control supports a sorted view of the retrieved data. (Overrides DataSourceView..::.CanSort.)
Public propertyCanUpdateGets a value that indicates whether the QueryableDataSourceView object that is associated with the current QueryableDataSource control supports update operations. (Overrides DataSourceView..::.CanUpdate.)
Public propertyDeleteParametersGets the collection that contains the parameters that are used during a delete operation.
Protected propertyEntityTypeGets the type of the data object to use for CUD operations.
Protected propertyEventsGets a list of event-handler delegates for the data source view. (Inherited from DataSourceView.)
Public propertyGroupByGets or sets the name or names of the properties to use during the select operation for grouping data.
Public propertyGroupByParametersGets a collection of parameters whose values are used to create the GroupBy clause during the select operation.
Public propertyInsertParametersGets a collection of parameters that are used during the insert operation.
Protected propertyIsTrackingViewStateGets a value that indicates whether the QueryableDataSourceView object is saving changes to its view state.
Public propertyNameGets the name of the data source view. (Inherited from DataSourceView.)
Public propertyOrderByGets or sets the name or names of the properties that are used during the select operation to sort data.
Public propertyOrderByParametersGets a collection of parameters that are used during the select operation to sort data.
Public propertyOrderGroupsByGets or sets the names of the properties that are used during the select operation to sort grouped data.
Public propertyOrderGroupsByParametersGets a collection of parameters that are used to create the OrderGroupsBy clause.
Public propertySelectNewGets or sets the properties and calculated values that are included in the retrieved data.
Public propertySelectNewParametersGets the collection of parameters that are used during a data-retrieval operation.
Public propertyUpdateParametersGets the collection of parameters that are used during an update operation.
Public propertyWhereGets or sets a value that specifies what conditions must be true for a row to be included in the retrieved data.
Public propertyWhereParametersGets a collection of parameters that are used to create a Where clause.
Top
  NameDescription
Protected methodBuildDeleteObjectCreates the objects to use for the delete operation.
Protected methodBuildInsertObjectCreates the objects to use for the insert operation by using the values to insert and the error message to display if the operation fails.
Protected methodBuildQueryCreates a Select query expression by using the select arguments of the data source.
Protected methodBuildUpdateObjectsCreates the objects to use for the update operation by using the specified values.
Public methodCanExecuteDetermines whether the specified command can be executed. (Inherited from DataSourceView.)
Protected methodClearOriginalValuesClears the original values.
Protected methodCreateQueryContextCreates an instance of a query context object that contains the evaluated parameter collections.
Public methodDelete(IDictionary, IDictionary)Performs a delete operation.
Public methodDelete(IDictionary, IDictionary, DataSourceViewOperationCallback)Performs an asynchronous delete operation on the list of data that the DataSourceView object represents. (Inherited from DataSourceView.)
Protected methodDeleteObjectDeletes a data object from a table.
Public methodEquals(Object)Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected methodExecuteCommand(String, IDictionary, IDictionary)Executes the specified command. (Inherited from DataSourceView.)
Public methodExecuteCommand(String, IDictionary, IDictionary, DataSourceViewOperationCallback)Executes the specified command. (Inherited from DataSourceView.)
Protected methodExecuteDeletePerforms a delete operation on data items that the QueryableDataSourceView object represents by using the specified values. (Overrides DataSourceView..::.ExecuteDelete(IDictionary, IDictionary).)
Protected methodExecuteInsertPerforms an insert operation on the data items that the QueryableDataSourceView object represents by using the specified value. (Overrides DataSourceView..::.ExecuteInsert(IDictionary).)
Protected methodExecutePagingExecutes paging by using the QueryContext object from the QueryableDataSource object.
Protected methodExecuteQueryPerforms a query, sort, or paging operation on the IQueryable<(Of <(T>)>) object.
Protected methodExecuteQueryExpressionsExecutes query expressions by using an IQueryable object and the QueryContext object.
Protected methodExecuteSelectPerforms a data-retrieval operation. (Overrides DataSourceView..::.ExecuteSelect(DataSourceSelectArguments).)
Protected methodExecuteSortingPerforms a sorting operation.
Protected methodExecuteUpdatePerforms an update operation. (Overrides DataSourceView..::.ExecuteUpdate(IDictionary, IDictionary, IDictionary).)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public methodGetHashCodeServes as a hash function for a particular type. (Inherited from Object.)
Protected methodGetOriginalValuesRetrieves the original values for the specified keys that were stored during the Select operation.
Protected methodGetSourceGets initial IQueryable object for the data source view based on the query context.
Public methodGetTypeGets the Type of the current instance. (Inherited from Object.)
Protected methodHandleValidationErrorsCalled by methods that perform CRUD operations when a CRUD operation fails in the data-object building process.
Public methodInsert(IDictionary)Performs an asynchronous insert operation on the data items that the QueryableDataSourceView object represents.
Public methodInsert(IDictionary, DataSourceViewOperationCallback)Performs an asynchronous insert operation on the list of data that the DataSourceView object represents. (Inherited from DataSourceView.)
Protected methodInsertObjectInserts data objects into a QueryableDataSourceView object.
Protected methodLoadViewStateRestores the previously saved view state for the data source view.
Protected methodMemberwiseCloneCreates a shallow copy of the current Object. (Inherited from Object.)
Protected methodOnDataSourceViewChangedRaises the DataSourceViewChanged event. (Inherited from DataSourceView.)
Protected methodOnQueryCreatedRaises the QueryCreated event after the QueryableDataSource control has created an IQueryable object.
Protected methodOnQueryParametersChangedCalls the RaiseViewChanged method.
Protected methodRaiseUnsupportedCapabilityErrorCalled by the RaiseUnsupportedCapabilitiesError method to compare the capabilities requested for an ExecuteSelect operation against those that the view supports. (Inherited from DataSourceView.)
Public methodRaiseViewChangedCalls the OnDataSourceViewChanged method.
Protected methodSaveViewStateSaves changes to view state for the QueryableDataSourceView object since the time that the page was posted to the server.
Public methodSelectGets a list of data asynchronously from the underlying data storage. (Inherited from DataSourceView.)
Protected methodStoreOriginalValues(IList)Stores the original values from the Select operation in the control's view state.
Protected methodStoreOriginalValues(IList, Func<(Of <(PropertyDescriptor, Boolean>)>))Stores the original values from the select operation in the control's view state when delete or update operations are enabled.
Public methodToStringReturns a string that represents the current object. (Inherited from Object.)
Protected methodTrackViewStateCauses tracking of view-state changes to the server control so that they can be stored in the server control's state.
Public methodUpdate(IDictionary, IDictionary, IDictionary)Performs an update operation.
Public methodUpdate(IDictionary, IDictionary, IDictionary, DataSourceViewOperationCallback)Performs an asynchronous update operation on the list of data that the DataSourceView object represents. (Inherited from DataSourceView.)
Protected methodUpdateObjectUpdates a data object.
Top
  NameDescription
Public eventDataSourceViewChangedOccurs when the data source view has changed. (Inherited from DataSourceView.)
Public eventQueryCreatedOccurs when a query is created.
Top
  NameDescription
Protected fieldStatic memberEventSelectedSpecifies whether the event that causes the data-retrieval operation to complete has occurred.
Protected fieldStatic memberEventSelectingSpecifies whether the event that occurs before a data-retrieval operation has occurred.
Top
  NameDescription
Explicit interface implemetationPrivate propertyIStateManager..::.IsTrackingViewStateWhen implemented by a class, gets a value that indicates whether a server control is tracking its view-state changes.
Explicit interface implemetationPrivate methodIStateManager..::.LoadViewStateWhen implemented by a class, loads the server control's previously saved view state for the control.
Explicit interface implemetationPrivate methodIStateManager..::.SaveViewStateWhen implemented by a class, saves the changes to a server control's view state to an object.
Explicit interface implemetationPrivate methodIStateManager..::.TrackViewStateWhen implemented by a class, gets a value that indicates whether a server control is tracking its view-state changes.
Top

.NET Framework

Supported in: 4

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role not supported), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Bibliothèque de classes .NET Framework
QueryableDataSourceView, classe

Prend en charge le contrôle QueryableDataSource et fournit une interface pour les contrôles liés aux données pour exécuter des opérations de données LINQ.

System..::.Object
  System.Web.UI..::.DataSourceView
    System.Web.UI.WebControls..::.QueryableDataSourceView
      System.Web.UI.WebControls..::.ContextDataSourceView

Espace de noms :  System.Web.UI.WebControls
Assembly :  System.Web.Extensions (dans System.Web.Extensions.dll)
Visual Basic
Public MustInherit Class QueryableDataSourceView _
    Inherits DataSourceView _
    Implements IStateManager
C#
public abstract class QueryableDataSourceView : DataSourceView, 
    IStateManager
VisualC++
public ref class QueryableDataSourceView abstract : public DataSourceView, 
    IStateManager
F#
[<AbstractClass>]
type QueryableDataSourceView =  
    class
        inherit DataSourceView
        interface IStateManager
    end

Le type QueryableDataSourceView expose les membres suivants.

  NomDescription
Méthode protégéeQueryableDataSourceViewInitialise une nouvelle instance de la classe QueryableDataSourceView.
Début
  NomDescription
Propriété publiqueAutoGenerateOrderByClauseObtient ou définit une valeur qui indique si l'objet QueryableDataSourceView associé au contrôle QueryableDataSource actuel crée dynamiquement une clause OrderBy.
Propriété publiqueAutoGenerateWhereClauseObtient ou définit une valeur qui indique si l'objet QueryableDataSourceView associé au contrôle QueryableDataSource actuel crée dynamiquement une clause Where.
Propriété publiqueAutoPageObtient ou définit une valeur qui indique si l'objet QueryableDataSourceView qui est associé au contrôle QueryableDataSource actif prend en charge la pagination par défaut.
Propriété publiqueAutoSortObtient ou définit une valeur qui indique si l'objet QueryableDataSourceView qui est associé au contrôle QueryableDataSource actif prend en charge le tri par défaut.
Propriété publiqueCanDeleteObtient une valeur qui indique si l'objet QueryableDataSourceView qui est associé au contrôle QueryableDataSource actif prend en charge les opérations de suppression. (Substitue DataSourceView..::.CanDelete.)
Propriété publiqueCanInsertObtient une valeur qui indique si l'objet QueryableDataSourceView qui est associé au contrôle QueryableDataSource actif prend en charge les opérations d'insertion. (Substitue DataSourceView..::.CanInsert.)
Propriété publiqueCanPageObtient une valeur qui indique si l'objet QueryableDataSourceView qui est associé au contrôle QueryableDataSource actif prend en charge la pagination. (Substitue DataSourceView..::.CanPage.)
Propriété publiqueCanRetrieveTotalRowCountObtient une valeur qui indique si l'objet QueryableDataSourceView associé au contrôle QueryableDataSource actuel prend en charge la récupération du nombre total de lignes de données et la récupération des données. (Substitue DataSourceView..::.CanRetrieveTotalRowCount.)
Propriété publiqueCanSortObtient une valeur qui indique si l'objet QueryableDataSourceView qui est associé au contrôle QueryableDataSource actif prend en charge un affichage trié des données récupérées. (Substitue DataSourceView..::.CanSort.)
Propriété publiqueCanUpdateObtient une valeur qui indique si l'objet QueryableDataSourceView qui est associé au contrôle QueryableDataSource actif prend en charge les opérations de mise à jour. (Substitue DataSourceView..::.CanUpdate.)
Propriété publiqueDeleteParametersObtient la collection qui contient les paramètres utilisés durant une opération de suppression.
Propriété protégéeEntityTypeObtient le type de l'objet de données à utiliser pour les opérations CUD.
Propriété protégéeEventsObtient la liste des délégués de gestion d'événements pour l'affichage de source de données. (Hérité de DataSourceView.)
Propriété publiqueGroupByObtient ou définit le ou les noms des propriétés à utiliser pendant l'opération de sélection pour regrouper des données.
Propriété publiqueGroupByParametersObtient une collection des paramètres dont les valeurs sont utilisées pour créer la clause GroupBy pendant l'opération de sélection.
Propriété publiqueInsertParametersObtient une collection de paramètres utilisés lors de l'opération d'insertion.
Propriété protégéeIsTrackingViewStateObtient une valeur qui indique si l'objet QueryableDataSourceView enregistre les modifications apportées à son état d'affichage.
Propriété publiqueNameObtient le nom de l'affichage de source de données. (Hérité de DataSourceView.)
Propriété publiqueOrderByObtient ou définit le ou les noms des propriétés qui sont utilisées durant l'opération de sélection pour le tri des données.
Propriété publiqueOrderByParametersObtient une collection de paramètres utilisés lors de l'opération de sélection pour trier les données.
Propriété publiqueOrderGroupsByObtient ou définit les noms des propriétés qui sont utilisées lors de l'opération de sélection pour le tri des données groupés.
Propriété publiqueOrderGroupsByParametersObtient une collection de paramètres qui sont utilisés pour créer la clause OrderGroupsBy.
Propriété publiqueSelectNewObtient ou définit les propriétés et les valeurs calculées incluses dans les données récupérées.
Propriété publiqueSelectNewParametersObtient la collection de paramètres utilisés lors d'une opération de récupération de données.
Propriété publiqueUpdateParametersObtient la collection de paramètres utilisés lors d'une opération de mise à jour.
Propriété publiqueWhereObtient ou définit une valeur qui spécifie les conditions qui doivent être remplies pour qu'une ligne soit incluse dans les données récupérées.
Propriété publiqueWhereParametersObtient une collection de paramètres qui sont utilisés pour créer une clause Where.
Début
  NomDescription
Méthode protégéeBuildDeleteObjectCrée les objets à utiliser pour l'opération de suppression.
Méthode protégéeBuildInsertObjectCrée les objets à utiliser pour l'opération d'insertion en utilisant les valeurs à insérer et le message d'erreur à afficher si l'opération échoue.
Méthode protégéeBuildQueryCrée une expression de requête Select à l'aide des arguments Select de la source de données.
Méthode protégéeBuildUpdateObjectsCrée les objets à utiliser pour l'opération de mise à jour à l'aide des valeurs spécifiées.
Méthode publiqueCanExecuteDétermine si la commande spécifiée peut être exécutée. (Hérité de DataSourceView.)
Méthode protégéeClearOriginalValuesEfface les valeurs d'origine.
Méthode protégéeCreateQueryContextCrée une instance d'un objet de contexte de requête qui contient les collections de paramètres évaluées.
Méthode publiqueDelete(IDictionary, IDictionary)Exécute une opération de suppression.
Méthode publiqueDelete(IDictionary, IDictionary, DataSourceViewOperationCallback)Exécute une opération de suppression asynchrone sur la liste des données que l'objet DataSourceView représente. (Hérité de DataSourceView.)
Méthode protégéeDeleteObjectSupprime un objet de donnée dans une table.
Méthode publiqueEquals(Object)Détermine si l'Object spécifié est égal à l'Object en cours. (Hérité de Object.)
Méthode protégéeExecuteCommand(String, IDictionary, IDictionary)Exécute la commande spécifiée. (Hérité de DataSourceView.)
Méthode publiqueExecuteCommand(String, IDictionary, IDictionary, DataSourceViewOperationCallback)Exécute la commande spécifiée. (Hérité de DataSourceView.)
Méthode protégéeExecuteDeleteExécute une opération de suppression sur les éléments de données que l'objet QueryableDataSourceView représente à l'aide des valeurs spécifiées. (Substitue DataSourceView..::.ExecuteDelete(IDictionary, IDictionary).)
Méthode protégéeExecuteInsertExécute une opération d'insertion sur les éléments de données que l'objet QueryableDataSourceView représente à l'aide de la valeur spécifiée. (Substitue DataSourceView..::.ExecuteInsert(IDictionary).)
Méthode protégéeExecutePagingExécute la pagination en utilisant l'objet QueryContext de l'objet QueryableDataSource.
Méthode protégéeExecuteQueryExécute une requête, un tri ou une opération de pagination sur l'objet IQueryable<(Of <(T>)>).
Méthode protégéeExecuteQueryExpressionsExécute des expressions de requête à l'aide d'un objet IQueryable et de l'objet QueryContext.
Méthode protégéeExecuteSelectExécute une opération d'extraction de données. (Substitue DataSourceView..::.ExecuteSelect(DataSourceSelectArguments).)
Méthode protégéeExecuteSortingExécute une opération de tri.
Méthode protégéeExecuteUpdateExécute une opération de mise à jour. (Substitue DataSourceView..::.ExecuteUpdate(IDictionary, IDictionary, IDictionary).)
Méthode protégéeFinalizeAutorise un objet à tenter de libérer des ressources et d'exécuter d'autres opérations de netto***ge avant qu'il ne soit récupéré par l'opération garbage collection. (Hérité de Object.)
Méthode publiqueGetHashCodeSert de fonction de hachage pour un type particulier. (Hérité de Object.)
Méthode protégéeGetOriginalValuesRécupère les valeurs d'origine des clés spécifiées stockées lors de l'opération Select.
Méthode protégéeGetSourceObtient l'objet IQueryable initial pour la vue de source de données en fonction du contexte de requête.
Méthode publiqueGetTypeObtient le Type de l'instance actuelle. (Hérité de Object.)
Méthode protégéeHandleValidationErrorsAppelé par les méthodes qui exécutent des opérations CRUD lorsque l'une de ces opérations échoue au cours du processus de construction d'objets de données.
Méthode publiqueInsert(IDictionary)Exécute une opération d'insertion asynchrone sur les éléments de données que l'objet QueryableDataSourceView représente.
Méthode publiqueInsert(IDictionary, DataSourceViewOperationCallback)Exécute une opération d'insertion asynchrone dans la liste des données que l'objet DataSourceView représente. (Hérité de DataSourceView.)
Méthode protégéeInsertObjectInsère des objets de données dans un objet QueryableDataSourceView.
Méthode protégéeLoadViewStateRestaure l'état d'affichage enregistré précédemment pour la vue de source de données.
Méthode protégéeMemberwiseCloneCrée une copie superficielle de l'objet Object actif. (Hérité de Object.)
Méthode protégéeOnDataSourceViewChangedDéclenche l'événement DataSourceViewChanged. (Hérité de DataSourceView.)
Méthode protégéeOnQueryCreatedDéclenche l'événement QueryCreated après que le contrôle QueryableDataSource a créé un objet IQueryable.
Méthode protégéeOnQueryParametersChangedAppelle la méthode RaiseViewChanged.
Méthode protégéeRaiseUnsupportedCapabilityErrorAppelé par la méthode RaiseUnsupportedCapabilitiesError pour comparer les fonctions demandées pour une opération ExecuteSelect à celles prises en charge par l'affichage. (Hérité de DataSourceView.)
Méthode publiqueRaiseViewChangedAppelle la méthode OnDataSourceViewChanged.
Méthode protégéeSaveViewStateEnregistre les modifications apportées à l'état d'affichage de l'objet QueryableDataSourceView depuis la publication de la page sur le serveur.
Méthode publiqueSelectObtient une liste de données en mode asynchrone provenant du stockage des données sous-jacent. (Hérité de DataSourceView.)
Méthode protégéeStoreOriginalValues(IList)Stocke les valeurs d'origine à partir de l'opération Select dans l'état d'affichage du contrôle.
Méthode protégéeStoreOriginalValues(IList, Func<(Of <(PropertyDescriptor, Boolean>)>))Stocke les valeurs d'origine de l'opération de sélection dans l'affichage de l'état du contrôle lorsque des opérations de suppression ou de mise à jour sont activées.
Méthode publiqueToStringRetourne une chaîne qui représente l'objet actuel. (Hérité de Object.)
Méthode protégéeTrackViewStateProvoque le suivi des modifications de l'état d'affichage pour le contrôle serveur afin qu'elles puissent être stockées dans l'état du contrôle serveur.
Méthode publiqueUpdate(IDictionary, IDictionary, IDictionary)Exécute une opération de mise à jour.
Méthode publiqueUpdate(IDictionary, IDictionary, IDictionary, DataSourceViewOperationCallback)Exécute une opération de mise à jour asynchrone dans la liste des données que l'objet DataSourceView représente. (Hérité de DataSourceView.)
Méthode protégéeUpdateObjectMet à jour un objet de données.
Début
  NomDescription
Événement publicDataSourceViewChangedSe produit lorsque l'affichage de source de données a été modifié. (Hérité de DataSourceView.)
Événement publicQueryCreatedSe produit lors de la création d'une requête.
Début
  NomDescription
Champ protégéMembre statiqueEventSelectedIndique si l'événement qui provoque l'exécution de l'opération d'extraction des données s'est produit.
Champ protégéMembre statiqueEventSelectingIndique si l'événement qui se produit avant une opération d'extraction des données s'est produit.
Début
  NomDescription
Implémentation d'interface explicitePropriété privéeIStateManager..::.IsTrackingViewStateImplémentée par une classe, obtient une valeur qui indique si un contrôle serveur effectue le suivi des changements de son état d'affichage.
Implémentation d'interface expliciteMéthode privéeIStateManager..::.LoadViewStateImplémentée par une classe, charge l'état d'affichage précédemment enregistré pour ce contrôle serveur.
Implémentation d'interface expliciteMéthode privéeIStateManager..::.SaveViewStateImplémentée par une classe, enregistre les modifications apportées à l'état d'affichage d'un contrôle serveur dans un objet.
Implémentation d'interface expliciteMéthode privéeIStateManager..::.TrackViewStateImplémentée par une classe, obtient une valeur qui indique si un contrôle serveur effectue le suivi des changements de son état d'affichage.
Début

.NET Framework

Pris en charge dans : 4

Windows 7, Windows Vista SP1 ou ultérieur, Windows XP SP3, Windows Server 2008 (installation minimale non prise en charge), Windows Server 2008 R2 (installation minimale prise en charge avec SP1 ou version ultérieure), Windows Server 2003 SP2

Le .NET Framework ne prend pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.
Tous les membres static (Shared en Visual Basic) publics de ce type sont thread-safe. Il n'est pas garanti que les membres d'instance soient thread-safe.
Contenu de la communauté   Qu'est-ce que le Contenu de la communauté ?
Ajouter du contenu RSS  Annotations
Processing
© 2012 Microsoft. Tous droits réservés. Conditions d'utilisation | Marques | Confidentialité
Page view tracker