ProfileSettingsCollection.Add(ProfileSettings) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Adiciona um objeto de ProfileSettings à coleção.
public:
void Add(System::Web::Configuration::ProfileSettings ^ profilesSettings);
public void Add (System.Web.Configuration.ProfileSettings profilesSettings);
member this.Add : System.Web.Configuration.ProfileSettings -> unit
Public Sub Add (profilesSettings As ProfileSettings)
Parâmetros
- profilesSettings
- ProfileSettings
Um objeto ProfileSettings a ser adicionado à coleção.
Exceções
O objeto ProfileSettings a ser adicionado já existe na coleção ou a coleção é somente leitura.
Exemplos
O exemplo de código a seguir mostra como usar o método Add. Este exemplo de código faz parte de um exemplo maior fornecido para a HealthMonitoringSection classe.
// Get the current Enabled property value.
Boolean enabledValue = healthMonitoringSection.Enabled;
// Set the Enabled property to false.
healthMonitoringSection.Enabled = false;
' Get the current Enabled property value.
Dim enabledValue As Boolean = healthMonitoringSection.Enabled
' Set the Enabled property to False.
healthMonitoringSection.Enabled = False
Comentários
A coleção ainda não deve conter um ProfileSettings objeto com o mesmo nome.