Calyptus.Mvc.PutAttribute.TryBinding C# (CSharp) Method

TryBinding() protected method

protected TryBinding ( IHttpContext context, object &value ) : bool
context IHttpContext
value object
return bool
		protected override bool TryBinding(IHttpContext context, out object value)
		{
			// TODO: JSON, XML, Stream etc.
			return SerializationHelper.TryDeserialize(context.Request.Form, Key, BindingTargetType, out value);
		}
	}