ProfilePropertySettingsCollection.Add(ProfilePropertySettings) 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 ProfilePropertySettings à coleção.
public:
void Add(System::Web::Configuration::ProfilePropertySettings ^ propertySettings);
public void Add (System.Web.Configuration.ProfilePropertySettings propertySettings);
member this.Add : System.Web.Configuration.ProfilePropertySettings -> unit
Public Sub Add (propertySettings As ProfilePropertySettings)
Parâmetros
- propertySettings
- ProfilePropertySettings
Um objeto ProfilePropertySettings a ser adicionado à coleção.
Exceções
O objeto ProfilePropertySettings 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 ProfileSection classe.
// Add a new PropertySettings to the group.
ProfilePropertySettings newProp = new ProfilePropertySettings("AvatarImage");
newProp.Type = "System.String, System.dll";
newPropGroup.PropertySettings.Add(newProp);
' Add a new PropertySettings to the group.
Dim newProp As ProfilePropertySettings = new ProfilePropertySettings("AvatarImage")
newProp.Type = "System.String, System.dll"
newPropGroup.PropertySettings.Add(newProp)
Comentários
A coleção ainda não deve conter um ProfilePropertySettings objeto com o mesmo nome.