/BlogEngine/DotNetSlave.BusinessLogic/API/MetaWeblog/MWAFault.cs
# · C# · 23 lines · 10 code · 3 blank · 10 comment · 0 complexity · 20ba25064e8579568c50e9429afa0ab0 MD5 · raw file
- namespace BlogEngine.Core.API.MetaWeblog
- {
- /// <summary>
- /// MetaWeblog Fault struct
- /// returned when error occurs
- /// </summary>
- internal struct MWAFault
- {
- #region Constants and Fields
-
- /// <summary>
- /// Error code of Fault Response
- /// </summary>
- public string faultCode;
-
- /// <summary>
- /// Message of Fault Response
- /// </summary>
- public string faultString;
-
- #endregion
- }
- }