ProfileParameter Konstruktory
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Inicializuje novou instanci ProfileParameter třídy .
Přetížení
ProfileParameter() |
Inicializuje novou instanci ProfileParameter třídy . |
ProfileParameter(ProfileParameter) |
Inicializuje novou instanci ProfileParameter třídy s hodnotami instance určené parametrem |
ProfileParameter(String, String) |
Inicializuje novou pojmenovanou instanci ProfileParameter třídy pomocí zadaného názvu vlastnosti k identifikaci, která ASP.NET Profil vlastnost vytvořit vazbu. |
ProfileParameter(String, DbType, String) |
Inicializuje novou instanci ProfileParameter třídy pomocí zadaného názvu vlastnosti k identifikaci ASP.NET Profil vlastnost vytvořit vazbu. |
ProfileParameter(String, TypeCode, String) |
Inicializuje novou pojmenovanou instanci třídy a silného ProfileParameter typu pomocí názvu zadané vlastnosti k identifikaci, která ASP.NET Profil vlastnost vytvořit vazbu. |
ProfileParameter()
Inicializuje novou instanci ProfileParameter třídy .
public:
ProfileParameter();
public ProfileParameter ();
Public Sub New ()
Poznámky
Objekt ProfileParameter vytvořený pomocí konstruktoru ProfileParameter je inicializován s výchozími hodnotami pro všechny jeho vlastnosti. Vlastnosti PropertyName se inicializují do String.Empty.
Name Dále je vlastnost inicializována na String.Empty, Type vlastnost je inicializována do TypeCode.Object, Direction vlastnost je inicializována na Inputa DefaultValue vlastnost je inicializována na hodnotu null (Nothing
v jazyce Visual Basic).
Platí pro
ProfileParameter(ProfileParameter)
Inicializuje novou instanci ProfileParameter třídy s hodnotami instance určené parametrem original
.
protected:
ProfileParameter(System::Web::UI::WebControls::ProfileParameter ^ original);
protected ProfileParameter (System.Web.UI.WebControls.ProfileParameter original);
new System.Web.UI.WebControls.ProfileParameter : System.Web.UI.WebControls.ProfileParameter -> System.Web.UI.WebControls.ProfileParameter
Protected Sub New (original As ProfileParameter)
Parametry
- original
- ProfileParameter
Instance ProfileParameter , ze které je aktuální instance inicializována.
Poznámky
Konstruktor ProfileParameter je konstruktor kopie, který protected
se používá ke klonování ProfileParameter instance. Do nové instance se přenesou ProfileParametervšechny hodnoty , včetně PropertyName, Namea Type .
Viz také
Platí pro
ProfileParameter(String, String)
Inicializuje novou pojmenovanou instanci ProfileParameter třídy pomocí zadaného názvu vlastnosti k identifikaci, která ASP.NET Profil vlastnost vytvořit vazbu.
public:
ProfileParameter(System::String ^ name, System::String ^ propertyName);
public ProfileParameter (string name, string propertyName);
new System.Web.UI.WebControls.ProfileParameter : string * string -> System.Web.UI.WebControls.ProfileParameter
Public Sub New (name As String, propertyName As String)
Parametry
- name
- String
Název parametru
- propertyName
- String
Název vlastnosti ASP.NET Profile, ke které je objekt parametru vázán. Výchozí formát je Empty.
Poznámky
Objekt ProfileParameter vytvořený pomocí konstruktoru ProfileParameter se inicializuje se zadaným názvem parametru a PropertyName, který identifikuje vlastnost ASP.NET Profile, se kterou se parametr váže. Ostatní vlastnosti, včetně Type, aConvertEmptyStringToNull, Directionse inicializují s výchozími hodnotami.
Viz také
Platí pro
ProfileParameter(String, DbType, String)
Inicializuje novou instanci ProfileParameter třídy pomocí zadaného názvu vlastnosti k identifikaci ASP.NET Profil vlastnost vytvořit vazbu.
public:
ProfileParameter(System::String ^ name, System::Data::DbType dbType, System::String ^ propertyName);
public ProfileParameter (string name, System.Data.DbType dbType, string propertyName);
new System.Web.UI.WebControls.ProfileParameter : string * System.Data.DbType * string -> System.Web.UI.WebControls.ProfileParameter
Public Sub New (name As String, dbType As DbType, propertyName As String)
Parametry
- name
- String
Název parametru
- dbType
- DbType
Typ databáze, který parametr představuje.
- propertyName
- String
Název vlastnosti ASP.NET Profile, ke které je objekt parametru vázán.
Platí pro
ProfileParameter(String, TypeCode, String)
Inicializuje novou pojmenovanou instanci třídy a silného ProfileParameter typu pomocí názvu zadané vlastnosti k identifikaci, která ASP.NET Profil vlastnost vytvořit vazbu.
public:
ProfileParameter(System::String ^ name, TypeCode type, System::String ^ propertyName);
public ProfileParameter (string name, TypeCode type, string propertyName);
new System.Web.UI.WebControls.ProfileParameter : string * TypeCode * string -> System.Web.UI.WebControls.ProfileParameter
Public Sub New (name As String, type As TypeCode, propertyName As String)
Parametry
- name
- String
Název parametru
- propertyName
- String
Název vlastnosti ASP.NET Profile, ke které je objekt parametru vázán. Výchozí formát je Empty.
Poznámky
Objekt ProfileParameter vytvořený pomocí konstruktoru ProfileParameter se inicializuje se zadaným názvem parametru , Typea PropertyName. Direction Pouze vlastnosti a ConvertEmptyStringToNull jsou inicializovány s výchozími hodnotami.