개정판 366f00c2
dns 체크 에러 수정
Change-Id: I9fd9b9d37c7c2529795ab14f46f58b157d911809
MarkupToPDF/Controls/Parsing/MarkupParse.cs | ||
---|---|---|
65 | 65 |
/// </summary> |
66 | 66 |
/// <param name="str"></param> |
67 | 67 |
/// <returns></returns> |
68 |
public static CommentUserInfo FromString(string item, SolidColorBrush brush, string sProjectNo)
|
|
68 |
public static async Task<CommentUserInfo> FromStringAsync(string item, SolidColorBrush brush, string sProjectNo)
|
|
69 | 69 |
{ |
70 | 70 |
CommentUserInfo instance = null; |
71 | 71 |
var unkown = JsonSerializerHelper.JsonDeserialize<S_BaseControl>(item); //복호화작업 |
... | ... | |
221 | 221 |
foreach (var token in tokens) |
222 | 222 |
{ |
223 | 223 |
var item = await JsonSerializerHelper.UnCompressStringAsync(token); //언패킹작업 |
224 |
CommentUserInfo control = MarkupParser.FromString(item, _SetColor, sProjectNo);
|
|
224 |
CommentUserInfo control = await MarkupParser.FromStringAsync(item, _SetColor, sProjectNo);
|
|
225 | 225 |
if (control != null) |
226 | 226 |
{ |
227 | 227 |
Layer.Children.Add(control); |
... | ... | |
284 | 284 |
foreach (var dataPease in data) |
285 | 285 |
{ |
286 | 286 |
var item = await JsonSerializerHelper.UnCompressStringAsync(dataPease); //언패킹작업 |
287 |
CommentUserInfo control = MarkupParser.FromString(item, _SetColor, sProjectNo); |
|
287 |
|
|
288 |
CommentUserInfo control = await MarkupParser.FromStringAsync(item, _SetColor, sProjectNo); |
|
289 |
|
|
288 | 290 |
res = control as Control; |
289 | 291 |
if (control != null) |
290 | 292 |
{ |
내보내기 Unified diff