CSEntryChangeExtensionsCreateAttributeChange Method (CSEntryChange, String, AttributeModificationType, IListValueChange) |
Creates an AttributeChange of the specified type
Namespace: Lithnet.MetadirectoryServicesAssembly: Lithnet.MetadirectoryServices (in Lithnet.MetadirectoryServices.dll) Version: 1.0.6017.24765
Syntax public static void CreateAttributeChange(
this CSEntryChange csentry,
string attributeName,
AttributeModificationType modificationType,
IList<ValueChange> values
)
<ExtensionAttribute>
Public Shared Sub CreateAttributeChange (
csentry As CSEntryChange,
attributeName As String,
modificationType As AttributeModificationType,
values As IList(Of ValueChange)
)
public:
[ExtensionAttribute]
static void CreateAttributeChange(
CSEntryChange^ csentry,
String^ attributeName,
AttributeModificationType modificationType,
IList<ValueChange^>^ values
)
Parameters
- csentry
- Type: CSEntryChange
The CSEntryChange to add the AttributeChange to - attributeName
- Type: SystemString
The name of the attribute - modificationType
- Type: AttributeModificationType
The type of modification to apply to the attribute - values
- Type: System.Collections.GenericIListValueChange
The value changes to apply to the modification 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