Share via


DeltaDeletedResource<T> Constructors

Definition

Overloads

DeltaDeletedResource<T>()

Initializes a new instance of DeltaDeletedResource<T>.

DeltaDeletedResource<T>(Type)

Initializes a new instance of DeltaDeletedResource<T>.

DeltaDeletedResource<T>(Type, IEnumerable<String>)

Initializes a new instance of DeltaDeletedResource<T>.

DeltaDeletedResource<T>(Type, IEnumerable<String>, PropertyInfo)

Initializes a new instance of DeltaDeletedResource<T>.

DeltaDeletedResource<T>()

Initializes a new instance of DeltaDeletedResource<T>.

public DeltaDeletedResource ();
Public Sub New ()

Applies to

DeltaDeletedResource<T>(Type)

Initializes a new instance of DeltaDeletedResource<T>.

public DeltaDeletedResource (Type structuralType);
new Microsoft.AspNetCore.OData.Deltas.DeltaDeletedResource<'T (requires 'T : null)> : Type -> Microsoft.AspNetCore.OData.Deltas.DeltaDeletedResource<'T (requires 'T : null)>
Public Sub New (structuralType As Type)

Parameters

structuralType
Type

The derived entity type which the changes would be tracked. structuralType should be assignable to instances of T.

Applies to

DeltaDeletedResource<T>(Type, IEnumerable<String>)

Initializes a new instance of DeltaDeletedResource<T>.

public DeltaDeletedResource (Type structuralType, System.Collections.Generic.IEnumerable<string> updatableProperties);
new Microsoft.AspNetCore.OData.Deltas.DeltaDeletedResource<'T (requires 'T : null)> : Type * seq<string> -> Microsoft.AspNetCore.OData.Deltas.DeltaDeletedResource<'T (requires 'T : null)>
Public Sub New (structuralType As Type, updatableProperties As IEnumerable(Of String))

Parameters

structuralType
Type

The derived entity type for which the changes would be tracked. structuralType should be assignable to instances of T.

updatableProperties
IEnumerable<String>

The set of properties that can be updated or reset. Unknown property names, including those of dynamic properties, are ignored.

Applies to

DeltaDeletedResource<T>(Type, IEnumerable<String>, PropertyInfo)

Initializes a new instance of DeltaDeletedResource<T>.

public DeltaDeletedResource (Type structuralType, System.Collections.Generic.IEnumerable<string> updatableProperties, System.Reflection.PropertyInfo dynamicDictionaryPropertyInfo);
new Microsoft.AspNetCore.OData.Deltas.DeltaDeletedResource<'T (requires 'T : null)> : Type * seq<string> * System.Reflection.PropertyInfo -> Microsoft.AspNetCore.OData.Deltas.DeltaDeletedResource<'T (requires 'T : null)>
Public Sub New (structuralType As Type, updatableProperties As IEnumerable(Of String), dynamicDictionaryPropertyInfo As PropertyInfo)

Parameters

structuralType
Type

The derived entity type which the changes would be tracked. structuralType should be assignable to instances of T.

updatableProperties
IEnumerable<String>

The set of properties that can be updated or reset. Unknown property names, including those of dynamic properties, are ignored.

dynamicDictionaryPropertyInfo
PropertyInfo

The property info that is used as dictionary of dynamic properties. null means this entity type is not open.

Applies to