PageRenderTime 38ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/BlogEngine/DotNetSlave.BusinessLogic/API/MetaWeblog/MWAFault.cs

#
C# | 23 lines | 10 code | 3 blank | 10 comment | 0 complexity | 20ba25064e8579568c50e9429afa0ab0 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0, BSD-3-Clause
  1. namespace BlogEngine.Core.API.MetaWeblog
  2. {
  3. /// <summary>
  4. /// MetaWeblog Fault struct
  5. /// returned when error occurs
  6. /// </summary>
  7. internal struct MWAFault
  8. {
  9. #region Constants and Fields
  10. /// <summary>
  11. /// Error code of Fault Response
  12. /// </summary>
  13. public string faultCode;
  14. /// <summary>
  15. /// Message of Fault Response
  16. /// </summary>
  17. public string faultString;
  18. #endregion
  19. }
  20. }