c

play.api.mvc

AnyContentAsRaw

case class AnyContentAsRaw(raw: RawBuffer) extends AnyContent with Product with Serializable

AnyContent - Raw body (give access to the raw data as bytes).

Source
BodyParsers.scala
Linear Supertypes
Serializable, Product, Equals, AnyContent, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AnyContentAsRaw
  2. Serializable
  3. Product
  4. Equals
  5. AnyContent
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new AnyContentAsRaw(raw: RawBuffer)

Value Members

  1. def asFormUrlEncoded: Option[Map[String, Seq[String]]]

    application/x-www-form-urlencoded

    application/x-www-form-urlencoded

    Definition Classes
    AnyContent
  2. def asJson: Option[JsValue]

    text/json or application/json

    text/json or application/json

    Definition Classes
    AnyContent
  3. def asMultipartFormData: Option[[TemporaryFile]]

    multipart/form-data

    multipart/form-data

    Definition Classes
    AnyContent
  4. def asRaw: Option[RawBuffer]

    Used when no Content-Type matches

    Used when no Content-Type matches

    Definition Classes
    AnyContent
  5. def asText: Option[String]

    text/plain

    text/plain

    Definition Classes
    AnyContent
  6. def asXml: Option[NodeSeq]

    application/xml

    application/xml

    Definition Classes
    AnyContent
  7. def productElementNames: Iterator[String]
    Definition Classes
    Product
  8. val raw: RawBuffer