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

# · C# · 23 lines · 10 code · 3 blank · 10 comment · 0 complexity · 20ba25064e8579568c50e9429afa0ab0 MD5 · raw file

  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. }