IDtoInfo interface

Information about a DTO type.

public interface IDtoInfo

Members

name description
Properties { get; } The properties of the DTO.
CreateNew() Creates a new instance of the DTO.
CreateNew(…) Creates a new instance of the DTO, assigning properties with the specified names to the specified values.
GetProperty(…) Returns the property of the specified name.
ShallowClone(…) Clones the specified DTO by copying each property into a new instance.
TryGetProperty(…) Returns the property of the specified name.

Remarks

Do not implement this interface. Adding members to this interface will not be considered a breaking change to this library.

See Also