After achieving successful implementation of ajax POST, uploading model objects and even complex objects thanks to this nice post, 
the new goal is to have an implementation for even little more complicated scenario.
I have tried to implement the task in question via code examples searching google without a concrete and correct answer
The goal is to have multi purpose (multi data-type) data transfer from client side to server (without use of a form or HttpRequestBase) passing raw byte array in the most efficient way (i know that it is possible to implement a new protocol HTTP/2 or googles 
Protocol Buffers - Google's data interchange format
[HttpPost]
public JsonResult UploadFiles(byte[] parUploadBytearry)
{
}
preferably  a model which one of it's properties is a byte[]
[HttpPost]
public [JsonResult / ActionResult] Upload(SomeClassWithByteArray parDataModel)
{
}
The ajax http Post Signature :
Log("AajaxNoPostBack preparing post-> " + targetUrl);
$.ajax({
    type: 'POST',
    url: targetUrl,
    data: mods,
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    success:  function for Success..
});
I also desperately tried this workaround
public JsonResult UploadFiles(object parUploadBytearry)
{
    if (parUploadBytearry== null)
        return null;
    System.Runtime.Serialization.Formatters.Binary.BinaryFormatter bf = new System.Runtime.Serialization.Formatters.Binary.BinaryFormatter();
    var pathtosSave = System.IO.Path.Combine(Server.MapPath("~/Content/uploaded"), "Test11.png");
    using (System.IO.MemoryStream ms = new System.IO.MemoryStream())
    {
        bf.Serialize(ms, parUploadFiles);
        var Barr =  ms.ToArray();
        var s = new System.Web.Utils.FileFromBar(pathtosSave, BR);
    }
}
as it did post and received data all the way to saving the data (.png) successfully to a file in system, the data was not legit.
And the last sane try before the object to byte array attempt was this msdn Code example 1
What is the correct way to pass a byte array that C# will understand?
(in case of documents raw byte[] or files like png images)