Método IVsDataObjectChangeEventsBroker.RaiseObjectChanged (Int32, String, array<Object[], IDictionary<String, Object>, array<Object , IDictionary<String, Object>)
Gera o evento de ObjectChanged ou adiciona o evento ao grupo especificado do evento.
Namespace: Microsoft.VisualStudio.Data.Services
Assembly: Microsoft.VisualStudio.Data.Services (em Microsoft.VisualStudio.Data.Services.dll)
Sintaxe
'Declaração
Sub RaiseObjectChanged ( _
groupId As Integer, _
typeName As String, _
identifier As Object(), _
propertyValues As IDictionary(Of String, Object), _
newIdentifier As Object(), _
newPropertyValues As IDictionary(Of String, Object) _
)
void RaiseObjectChanged(
int groupId,
string typeName,
Object[] identifier,
IDictionary<string, Object> propertyValues,
Object[] newIdentifier,
IDictionary<string, Object> newPropertyValues
)
void RaiseObjectChanged(
int groupId,
String^ typeName,
array<Object^>^ identifier,
IDictionary<String^, Object^>^ propertyValues,
array<Object^>^ newIdentifier,
IDictionary<String^, Object^>^ newPropertyValues
)
abstract RaiseObjectChanged :
groupId:int *
typeName:string *
identifier:Object[] *
propertyValues:IDictionary<string, Object> *
newIdentifier:Object[] *
newPropertyValues:IDictionary<string, Object> -> unit
function RaiseObjectChanged(
groupId : int,
typeName : String,
identifier : Object[],
propertyValues : IDictionary<String, Object>,
newIdentifier : Object[],
newPropertyValues : IDictionary<String, Object>
)
Parâmetros
- groupId
Tipo: System.Int32
Um valor numérico representando o identificador do grupo de evento.Especificar 0 para evitar grupos de evento e disparar imediatamente o evento.
- typeName
Tipo: System.String
O nome do tipo de objeto de dados para que gera o evento.
- identifier
Tipo: array<System.Object[]
Uma matriz que contém as partes do identificador que identificam exclusivamente o objeto de dados antigo.
- propertyValues
Tipo: System.Collections.Generic.IDictionary<String, Object>
Os valores de propriedade do objeto de dados antigo alterado.
- newIdentifier
Tipo: array<System.Object[]
Uma matriz que contém as partes do identificador que identificam exclusivamente o novo objeto de dados.
- newPropertyValues
Tipo: System.Collections.Generic.IDictionary<String, Object>
Os novos valores de propriedade do objeto de dados alterado.
Exceções
Exceção | Condição |
---|---|
ArgumentOutOfRangeException | O parâmetro de groupId é menor que zero, ou é diferente de zero e maior do que a contagem de grupos existentes do evento. |
ArgumentException | Identificação de grupo inválidoA identificação do grupo não pôde ser validado. |
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiáveis.
Consulte também
Referência
IVsDataObjectChangeEventsBroker Interface