DigipostClientLibWebapp.Controllers.SendController.GetMimeType C# (CSharp) Method

GetMimeType() private static method

private static GetMimeType ( string &fileType, System.Web.HttpPostedFileBase httpPostedFileBase ) : void
fileType string
httpPostedFileBase System.Web.HttpPostedFileBase
return void
        private static void GetMimeType(out string fileType, HttpPostedFileBase httpPostedFileBase)
        {
            fileType = Converter.MimeTypeToDigipostFileType(httpPostedFileBase.ContentType);
        }