Пример #1
0
 public bool ReplyState(VgcApis.Interfaces.Lua.ILuaMail mail, bool state, string content) =>
 Reply(mail, 0, null, state, content);
Пример #2
0
 public bool Reply(VgcApis.Interfaces.Lua.ILuaMail mail, double code, string title, bool state, string content) =>
 Send(mail.GetAddress(), code, title, state, content);
Пример #3
0
 public bool ReplyState(VgcApis.Interfaces.Lua.ILuaMail mail, bool state) =>
 ReplyState(mail, state, null);
Пример #4
0
 public bool ReplyCode(VgcApis.Interfaces.Lua.ILuaMail mail, double code, string content) =>
 Reply(mail, code, null, false, content);
Пример #5
0
 public bool ReplyCode(VgcApis.Interfaces.Lua.ILuaMail mail, double code) =>
 ReplyCode(mail, code, null);
Пример #6
0
 public bool Reply(VgcApis.Interfaces.Lua.ILuaMail mail, string title, string content) =>
 Reply(mail, 0, title, false, content);
Пример #7
0
 public bool Reply(VgcApis.Interfaces.Lua.ILuaMail mail, string title) =>
 Reply(mail, title, null);