Abp.AutoMapper.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Abp.AutoMapper</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Abp.AutoMapper.AbpAutoMapperConfigurationExtensions">
  8. <summary>
  9. Defines extension methods to <see cref="T:Abp.Configuration.Startup.IModuleConfigurations"/> to allow to configure Abp.AutoMapper module.
  10. </summary>
  11. </member>
  12. <member name="M:Abp.AutoMapper.AbpAutoMapperConfigurationExtensions.AbpAutoMapper(Abp.Configuration.Startup.IModuleConfigurations)">
  13. <summary>
  14. Used to configure Abp.AutoMapper module.
  15. </summary>
  16. </member>
  17. <member name="M:Abp.AutoMapper.AutoMapExtensions.MapTo``1(System.Object)">
  18. <summary>
  19. Converts an object to another using AutoMapper library. Creates a new object of <typeparamref name="TDestination"/>.
  20. There must be a mapping between objects before calling this method.
  21. </summary>
  22. <typeparam name="TDestination">Type of the destination object</typeparam>
  23. <param name="source">Source object</param>
  24. </member>
  25. <member name="M:Abp.AutoMapper.AutoMapExtensions.MapTo``2(``0,``1)">
  26. <summary>
  27. Execute a mapping from the source object to the existing destination object
  28. There must be a mapping between objects before calling this method.
  29. </summary>
  30. <typeparam name="TSource">Source type</typeparam>
  31. <typeparam name="TDestination">Destination type</typeparam>
  32. <param name="source">Source object</param>
  33. <param name="destination">Destination object</param>
  34. <returns></returns>
  35. </member>
  36. <member name="P:Abp.AutoMapper.IAbpAutoMapperConfiguration.UseStaticMapper">
  37. <summary>
  38. Use static <see cref="P:AutoMapper.Mapper.Instance"/>.
  39. Default: true.
  40. </summary>
  41. </member>
  42. </members>
  43. </doc>