Ejemplo n.º 1
0
        public VideoHandler2(HttpFileCollection fileKeys, ResxModel resxModel, int chunkIndex = 1, int chunkCount = 1, string tempFileUrl = null) : base(fileKeys, resxModel)
        {
            file              = base.GetUpFile();
            this.chunkIndex   = chunkIndex;
            this.chunkCount   = chunkCount;
            this.tempFileName = Path.GetFileName(tempFileUrl);

            this.Init();
        }
Ejemplo n.º 2
0
        public ResxBase(ResxModel resxModel)
        {
            this.resxModel = resxModel;

            Init();
        }
Ejemplo n.º 3
0
 public ResxHandler(HttpRequestMessage request, ResxModel resxModel) : base(resxModel)
 {
     this.request = request;
 }
Ejemplo n.º 4
0
 public UpfileHandler(HttpFileCollection fileKeys, ResxModel resxModel) : base(resxModel)
 {
     this.fileKeys = fileKeys;
 }