Método AgentProfile.ChangeParameter
Changes the value of an existing replication agent parameter in the profile.
Namespace: Microsoft.SqlServer.Replication
Assembly: Microsoft.SqlServer.Rmo (em Microsoft.SqlServer.Rmo.dll)
Sintaxe
'Declaração
Public Sub ChangeParameter ( _
name As String, _
newValue As String _
)
'Uso
Dim instance As AgentProfile
Dim name As String
Dim newValue As String
instance.ChangeParameter(name, newValue)
public void ChangeParameter(
string name,
string newValue
)
public:
void ChangeParameter(
String^ name,
String^ newValue
)
member ChangeParameter :
name:string *
newValue:string -> unit
public function ChangeParameter(
name : String,
newValue : String
)
Parâmetros
- name
Tipo: System.String
A String that specifies the name of the parameter.
- newValue
Tipo: System.String
A String that specifies the new value for the parameter.
Comentários
The ChangeParameter method can be called only by members of the sysadmin fixed server role at the Distributor.
Calling ChangeParameter is equivalent to executing sp_change_agent_parameter (Transact-SQL).
Consulte também
Referência
Namespace Microsoft.SqlServer.Replication
Outros recursos
Trabalhar com perfis de agente de replicação (programação RMO)