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