public AtomResponse(XNode content, Action<Response> configurationDelegate = null)
     : base(new Response().ApplicationAtom().Content(content.GetString()), configurationDelegate)
 {
 }
Exemple #2
0
		public ImdnResponse(XNode content, Action<Response> configurationDelegate = null)
			: base(new Response().MessageImdn().Content(content.GetString()), configurationDelegate)
		{
		}
Exemple #3
0
		public XmlResponse(XNode content, Action<Response> configurationDelegate = null)
			: base(new Response().TextXml().Content(content.GetString()), configurationDelegate)
		{
		}
 public SvgResponse(XNode content, Action<Response> configurationDelegate = null)
     : base(new Response().ImageSvg().Content(content.GetString()), configurationDelegate)
 {
 }
Exemple #5
0
 public RdfResponse(XNode content, Action<Response> configurationDelegate = null)
     : base(Response.OK().ApplicationRdf().Content(content.GetString()), configurationDelegate)
 {
 }
Exemple #6
0
 public X3DXmlResponse(XNode content, Action<Response> configurationDelegate = null)
     : base(Response.OK().ModelX3DXml().Content(content.GetString()), configurationDelegate)
 {
 }