개정판 66bd3240
issue #0000 fileupload api - svg 추가
Change-Id: I3e3fdf586fd732c226f08ab9e2fbb300cb82ebc7
KCOM/PageManager/PageStorage.cs | ||
---|---|---|
46 | 46 |
_TotalPages = totalPages; |
47 | 47 |
_TakeCount = takeCount; |
48 | 48 |
|
49 |
_token = Authenticate(); |
|
49 |
//_token = Authenticate();
|
|
50 | 50 |
|
51 | 51 |
System.IO.DirectoryInfo info = System.IO.Directory.CreateDirectory(LocalStorage); |
52 | 52 |
|
... | ... | |
275 | 275 |
} |
276 | 276 |
} |
277 | 277 |
} |
278 |
catch (Exception) |
|
278 |
catch (Exception ex)
|
|
279 | 279 |
{ |
280 |
|
|
281 |
throw; |
|
280 |
throw ex; |
|
282 | 281 |
} |
283 | 282 |
|
284 | 283 |
return result; |
... | ... | |
333 | 332 |
System.Diagnostics.Debug.WriteLine("download start " + downloadFilePath); |
334 | 333 |
client.CachePolicy = new System.Net.Cache.RequestCachePolicy(System.Net.Cache.RequestCacheLevel.NoCacheNoStore); |
335 | 334 |
client.Headers.Add("Cache-Control", "no-cache"); |
336 |
client.Headers.Add(HttpRequestHeader.Authorization, _token); |
|
335 |
//client.Headers.Add(HttpRequestHeader.Authorization, _token);
|
|
337 | 336 |
|
338 | 337 |
//client.ResponseHeaders.Add(HttpRequestHeader.Authorization,) |
339 | 338 |
client.UseDefaultCredentials = true; |
내보내기 Unified diff