| CSEntryChangeExtensionsCreateAttributeUpdate Method (CSEntryChange, String, IListObject, IListObject) | 
            Creates an AttributeChange of type Update, with ValueChanges created for the specified value adds and deletes
            
 
Namespace: Lithnet.MetadirectoryServicesAssembly: Lithnet.MetadirectoryServices (in Lithnet.MetadirectoryServices.dll) Version: 1.0.6017.24765
 Syntax
Syntaxpublic static void CreateAttributeUpdate(
	this CSEntryChange csentry,
	string attributeName,
	IList<Object> valueAdds,
	IList<Object> valueDeletes
)
<ExtensionAttribute>
Public Shared Sub CreateAttributeUpdate ( 
	csentry As CSEntryChange,
	attributeName As String,
	valueAdds As IList(Of Object),
	valueDeletes As IList(Of Object)
)
public:
[ExtensionAttribute]
static void CreateAttributeUpdate(
	CSEntryChange^ csentry, 
	String^ attributeName, 
	IList<Object^>^ valueAdds, 
	IList<Object^>^ valueDeletes
)
Parameters
- csentry
- Type: CSEntryChange
 The CSEntryChange to add the AttributeChange to
- attributeName
- Type: SystemString
 The name of the attribute
- valueAdds
- Type: System.Collections.GenericIListObject
 The values to add in the update operation
- valueDeletes
- Type: System.Collections.GenericIListObject
 The values to delete in the update operation
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type 
CSEntryChange. When you use instance method syntax to call this method, omit the first parameter. For more information, see 
Extension Methods (Visual Basic) or 
Extension Methods (C# Programming Guide).
 See Also
See Also