Ejemplo n.º 1
0
 public AtomResponse(XNode content, Encoding encoding, Action<Response> configurationDelegate = null)
     : base(new Response().ApplicationAtom().ContentEncoding(encoding).Content(content.GetBytes(encoding)), configurationDelegate)
 {
 }
Ejemplo n.º 2
0
		public ImdnResponse(XNode content, Encoding encoding, Action<Response> configurationDelegate = null)
			: base(new Response().MessageImdn().ContentEncoding(encoding).Content(content.GetBytes(encoding)), configurationDelegate)
		{
		}
Ejemplo n.º 3
0
		public XmlResponse(XNode content, Encoding encoding, Action<Response> configurationDelegate = null)
			: base(new Response().TextXml().ContentEncoding(encoding).Content(content.GetBytes(encoding)), configurationDelegate)
		{
		}
Ejemplo n.º 4
0
 public RdfResponse(XNode content, Encoding encoding, Action<Response> configurationDelegate = null)
     : base(Response.OK().ApplicationRdf().ContentEncoding(encoding).Content(content.GetBytes(encoding)), configurationDelegate)
 {
 }
Ejemplo n.º 5
0
 public X3DXmlResponse(XNode content, Encoding encoding, Action<Response> configurationDelegate = null)
     : base(Response.OK().ModelX3DXml().ContentEncoding(encoding).Content(content.GetBytes(encoding)), configurationDelegate)
 {
 }
Ejemplo n.º 6
0
 public SvgResponse(XNode content, Encoding encoding, Action<Response> configurationDelegate = null)
     : base(Response.OK().ImageSvg().ContentEncoding(encoding).Content(content.GetBytes(encoding)), configurationDelegate)
 {
 }