markus / KCOM / App.xaml.cs @ 99b9f32a
이력 | 보기 | 이력해설 | 다운로드 (16.3 KB)
1 | 787a4489 | KangIngu | |
---|---|---|---|
2 | af22332b | ljiyeon | using KCOM.Common; |
3 | b60e844d | taeseongkim | using KCOM.Views; |
4 | using log4net; |
||
5 | 787a4489 | KangIngu | using System; |
6 | using System.ComponentModel; |
||
7 | c4a4d59c | ljiyeon | using System.IO; |
8 | 787a4489 | KangIngu | using System.Linq; |
9 | 6a19b48d | taeseongkim | using System.Net; |
10 | 787a4489 | KangIngu | using System.ServiceModel; |
11 | cf2671a6 | ljiyeon | using System.Threading.Tasks; |
12 | b60e844d | taeseongkim | using System.Windows; |
13 | fa48eb85 | taeseongkim | using System.Windows.Input; |
14 | 902faaea | taeseongkim | using System.Windows.Resources; |
15 | 787a4489 | KangIngu | |
16 | namespace KCOM |
||
17 | { |
||
18 | public class OpenProperties |
||
19 | { |
||
20 | public string DocumentItemID { get; set; } |
||
21 | public bool bPartner { get; set; } |
||
22 | public bool CreateFinalPDFPermission { get; set; } |
||
23 | public bool NewCommentPermission { get; set; } |
||
24 | public string ProjectNO { get; set; } |
||
25 | public string UserID { get; set; } |
||
26 | public int Mode { get; set; } |
||
27 | } |
||
28 | /// <summary> |
||
29 | /// App.xaml에 대한 상호 작용 논리 |
||
30 | /// </summary> |
||
31 | public partial class App : Application |
||
32 | { |
||
33 | eeb0a39c | taeseongkim | public static PageManager.PageStorage PageStorage; |
34 | a1e2ba68 | taeseongkim | public static string MarkusVersion = ""; |
35 | 76dc223b | taeseongkim | public static string BaseAddress; |
36 | public static string FileUploadUri; |
||
37 | 6a19b48d | taeseongkim | public static System.ServiceModel.Channels.Binding _binding; |
38 | 787a4489 | KangIngu | public static EndpointAddress _EndPoint; |
39 | public static EndpointAddress _EndPoint_SaveLoad; |
||
40 | public static EndpointAddress _EndPoint_Symbol; |
||
41 | public static string UserName; |
||
42 | public static IKCOM.ViewInfo ViewInfo; |
||
43 | public static string urlHost; |
||
44 | public static string urlPort; |
||
45 | public static string urlHost_DB; |
||
46 | public static string urlPort_DB; |
||
47 | public static string Custom_ViewInfoId; |
||
48 | public static bool ParameterMode = false; |
||
49 | 84c48033 | djkim | public static bool isExternal = false; |
50 | 787a4489 | KangIngu | |
51 | a7346d3c | humkyung | /// <summary> |
52 | /// logger |
||
53 | /// </summary> |
||
54 | ce3f0d7a | humkyung | public static ILog FileLogger = null; |
55 | 902faaea | taeseongkim | |
56 | public static StreamResourceInfo DefaultArrowCursor; |
||
57 | |||
58 | public static Stream DefaultArrowCursorStream |
||
59 | { |
||
60 | get { |
||
61 | 9d5b4bc2 | taeseongkim | return Application.GetResourceStream(new Uri(@"pack://application:,,,/Resources/Cursor/customCursor2.cur", UriKind.Absolute)).Stream; |
62 | //DefaultArrowCursor.Stream.Position = 0; |
||
63 | //return DefaultArrowCursor.Stream; |
||
64 | 902faaea | taeseongkim | } |
65 | } |
||
66 | a7346d3c | humkyung | |
67 | 76dc223b | taeseongkim | public static kr.co.devdoftech.cloud.FileUpload FileUploader |
68 | { |
||
69 | get { return new kr.co.devdoftech.cloud.FileUpload{ Url = FileUploadUri }; } |
||
70 | |||
71 | private set {; } |
||
72 | } |
||
73 | |||
74 | a7346d3c | humkyung | /// <summary> |
75 | 2089959a | taeseongkim | /// VisualStudio Design Time여부 |
76 | /// </summary> |
||
77 | public static bool IsDesignMode |
||
78 | { |
||
79 | get |
||
80 | { |
||
81 | try |
||
82 | { |
||
83 | return DesignerProperties.GetIsInDesignMode(new DependencyObject()); |
||
84 | } |
||
85 | catch (Exception) |
||
86 | { |
||
87 | return false; |
||
88 | } |
||
89 | } |
||
90 | private set { } |
||
91 | } |
||
92 | |||
93 | /// <summary> |
||
94 | a7346d3c | humkyung | /// Application Data Folder |
95 | /// </summary> |
||
96 | public static string AppDataFolder |
||
97 | { |
||
98 | get |
||
99 | { |
||
100 | return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "MARKUS"); |
||
101 | } |
||
102 | } |
||
103 | 787a4489 | KangIngu | |
104 | public static IKCOM.KCOM_SystemInfo SystemInfo { get; set; } |
||
105 | 1137be84 | djkim | |
106 | 264c9309 | ljiyeon | |
107 | 787a4489 | KangIngu | private static OpenProperties ParamDecoding(string DecodingText, System.Text.Encoding oEncoding = null) |
108 | { |
||
109 | if (oEncoding == null) |
||
110 | oEncoding = System.Text.Encoding.UTF8; |
||
111 | |||
112 | byte[] byteArray = Convert.FromBase64String(DecodingText); |
||
113 | |||
114 | string jsonBack = oEncoding.GetString(byteArray); |
||
115 | |||
116 | return Newtonsoft.Json.JsonConvert.DeserializeObject<OpenProperties>(jsonBack); |
||
117 | } |
||
118 | |||
119 | c4a4d59c | ljiyeon | private string versionPath = null; |
120 | cf2671a6 | ljiyeon | //public SplashScreen splash = new SplashScreen("splash.png"); |
121 | e0cfc73c | ljiyeon | public static SplashScreenWindow splashScreen = new SplashScreenWindow(); |
122 | cdfb57ff | taeseongkim | |
123 | public App() |
||
124 | { |
||
125 | aff63364 | taeseongkim | Telerik.Windows.Controls.StyleManager.ApplicationTheme = new Telerik.Windows.Controls.VisualStudio2013Theme(); |
126 | b60e844d | taeseongkim | |
127 | App.FileLogger = LogManager.GetLogger(typeof(App)); |
||
128 | cdfb57ff | taeseongkim | } |
129 | |||
130 | eeb0a39c | taeseongkim | protected override void OnExit(ExitEventArgs e) |
131 | { |
||
132 | 81908c01 | taeseongkim | try |
133 | { |
||
134 | if (App.PageStorage != null) |
||
135 | { |
||
136 | App.PageStorage.Clear(); |
||
137 | } |
||
138 | } |
||
139 | catch (Exception) |
||
140 | { |
||
141 | } |
||
142 | eeb0a39c | taeseongkim | |
143 | base.OnExit(e); |
||
144 | } |
||
145 | |||
146 | cdfb57ff | taeseongkim | protected override async void OnStartup(StartupEventArgs e) |
147 | { |
||
148 | 787a4489 | KangIngu | try |
149 | a7346d3c | humkyung | { |
150 | 902faaea | taeseongkim | DefaultArrowCursor = Application.GetResourceStream(new Uri(@"pack://application:,,,/Resources/Cursor/customCursor2.cur", UriKind.Absolute)); |
151 | |||
152 | cf2671a6 | ljiyeon | splashScreen.Show(); |
153 | 1137be84 | djkim | |
154 | b60e844d | taeseongkim | App.Current.DispatcherUnhandledException += Current_DispatcherUnhandledException; |
155 | a7346d3c | humkyung | /// up to here |
156 | b60e844d | taeseongkim | //AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); |
157 | a7346d3c | humkyung | |
158 | 1137be84 | djkim | #region // DNS 체크 |
159 | |||
160 | string localdomain = CommonLib.Common.GetConfigString("HOST_DOMAIN", "DOMAIN", ""); |
||
161 | |||
162 | 8e6884a5 | taeseongkim | ViewerDataModel.Instance.IsDocumentHistory = Convert.ToBoolean(CommonLib.Common.GetConfigString("COMMON","IsDocumentHistory", "true")); |
163 | |||
164 | 1137be84 | djkim | var hostEntry = CommonLib.DNSHelper.GetHostEntryTask(); |
165 | df33d20a | djkim | |
166 | 1137be84 | djkim | if (hostEntry == null) |
167 | { |
||
168 | System.Diagnostics.Debug.WriteLine("(hostEntry == null"); |
||
169 | 664ea2e1 | taeseongkim | //App.FileLogger.Debug("hostEntry == null"); |
170 | 1137be84 | djkim | isExternal = true; |
171 | } |
||
172 | ddfd4bc7 | djkim | else if (!string.IsNullOrEmpty(localdomain) && !hostEntry.HostName.ToUpper().EndsWith(localdomain.ToUpper())) |
173 | 1137be84 | djkim | { |
174 | // 외부 사용자 |
||
175 | 664ea2e1 | taeseongkim | App.FileLogger.Debug(string.Format("You are external user because located out side of given domain({0})\nYour domain is {1}", localdomain, hostEntry.HostName)); |
176 | 1137be84 | djkim | isExternal = true; |
177 | } |
||
178 | #endregion |
||
179 | |||
180 | 366f00c2 | taeseongkim | |
181 | 787a4489 | KangIngu | if (e.Args.Count() > 0) |
182 | { |
||
183 | c4a4d59c | ljiyeon | var result = ParamDecoding(e.Args[0].Replace(@"kcom://", "").Replace(@"/", "")); |
184 | 787a4489 | KangIngu | App.ViewInfo = new IKCOM.ViewInfo |
185 | { |
||
186 | DocumentItemID = result.DocumentItemID, |
||
187 | 35afe17c | djkim | EnsembleID = result.DocumentItemID, |
188 | 787a4489 | KangIngu | //DocumentItemID = "10001", |
189 | bPartner = result.bPartner, |
||
190 | bc664e9b | djkim | CreateFinalPDFPermission = result.CreateFinalPDFPermission, |
191 | NewCommentPermission = result.NewCommentPermission, |
||
192 | 787a4489 | KangIngu | ProjectNO = result.ProjectNO, |
193 | UserID = result.UserID, |
||
194 | 9d5b4bc2 | taeseongkim | isAdmin = Convert.ToBoolean(result.Mode) |
195 | 787a4489 | KangIngu | //UserID = "H2009115", |
196 | 7cf8b728 | taeseongkim | //Mode = result.Mode |
197 | 787a4489 | KangIngu | }; |
198 | 77cdac33 | taeseongkim | ParameterMode = true; |
199 | 401a87f8 | taeseongkim | } |
200 | c4a4d59c | ljiyeon | else |
201 | { |
||
202 | string[] strArg = Environment.GetCommandLineArgs(); |
||
203 | if (strArg.Length > 1) |
||
204 | { |
||
205 | var result = ParamDecoding(strArg[1].Replace(@"kcom://", "").Replace(@"/", "")); |
||
206 | App.ViewInfo = new IKCOM.ViewInfo |
||
207 | { |
||
208 | DocumentItemID = result.DocumentItemID, |
||
209 | 35afe17c | djkim | EnsembleID = result.DocumentItemID, |
210 | c4a4d59c | ljiyeon | //DocumentItemID = "10001", |
211 | bPartner = result.bPartner, |
||
212 | CreateFinalPDFPermission = result.CreateFinalPDFPermission, |
||
213 | NewCommentPermission = result.NewCommentPermission, |
||
214 | ProjectNO = result.ProjectNO, |
||
215 | UserID = result.UserID, |
||
216 | //UserID = "H2009115", |
||
217 | //Mode = 0 , 1 , 2 |
||
218 | }; |
||
219 | ParameterMode = true; |
||
220 | 1137be84 | djkim | } |
221 | 1ed8da93 | humkyung | else |
222 | { |
||
223 | MessageBox.Show("문서 정보가 입력되지 않았습니다.\n프로그램이 종료됩니다.", "안내"); |
||
224 | throw new ArgumentException("문서 정보가 입력되지 않았습니다."); |
||
225 | } |
||
226 | c4a4d59c | ljiyeon | } |
227 | 992a98b4 | KangIngu | |
228 | //App.ViewInfo.CreateFinalPDFPermission = false; |
||
229 | //App.ViewInfo.NewCommentPermission = false; |
||
230 | c4a4d59c | ljiyeon | //GetQueryStringParameters(); |
231 | a7578175 | taeseongkim | //_binding = new WSHttpBinding(); |
232 | //_binding.Security = new WSHttpSecurity { Transport = new HttpTransportSecurity { ClientCredentialType = HttpClientCredentialType.None }, Mode = SecurityMode.Transport }; |
||
233 | //_binding.MaxReceivedMessageSize = 2147483647; |
||
234 | //_binding.OpenTimeout = new TimeSpan(0, 1, 0); |
||
235 | //_binding.ReceiveTimeout = new TimeSpan(0, 10, 0); |
||
236 | //_binding.CloseTimeout = new TimeSpan(0, 5, 0); |
||
237 | //_binding.SendTimeout = new TimeSpan(0, 5, 0); |
||
238 | |||
239 | 6a19b48d | taeseongkim | #region 기본 binding |
240 | BasicHttpBinding basicHttpBinding = new BasicHttpBinding(BasicHttpSecurityMode.None); |
||
241 | basicHttpBinding.Security = new BasicHttpSecurity { Transport = new HttpTransportSecurity { ClientCredentialType = HttpClientCredentialType.None, ProxyCredentialType = HttpProxyCredentialType.None }, Mode = BasicHttpSecurityMode.None, Message = new BasicHttpMessageSecurity { AlgorithmSuite = System.ServiceModel.Security.SecurityAlgorithmSuite.Basic256, ClientCredentialType = BasicHttpMessageCredentialType.UserName } }; |
||
242 | basicHttpBinding.MaxBufferSize = 2147483647; |
||
243 | basicHttpBinding.MaxBufferPoolSize = 2147483647; |
||
244 | basicHttpBinding.MaxReceivedMessageSize = 2147483647; |
||
245 | basicHttpBinding.OpenTimeout = new TimeSpan(0, 30, 0); |
||
246 | basicHttpBinding.ReceiveTimeout = new TimeSpan(4, 30, 0); |
||
247 | basicHttpBinding.CloseTimeout = new TimeSpan(0, 30, 0); |
||
248 | basicHttpBinding.SendTimeout = new TimeSpan(4, 30, 0); |
||
249 | basicHttpBinding.TextEncoding = System.Text.Encoding.UTF8; |
||
250 | basicHttpBinding.TransferMode = TransferMode.Buffered; |
||
251 | basicHttpBinding.MessageEncoding = WSMessageEncoding.Text; |
||
252 | basicHttpBinding.HostNameComparisonMode = HostNameComparisonMode.StrongWildcard; |
||
253 | 45ac2822 | taeseongkim | //basicHttpBinding.ProxyAddress = null; |
254 | 5c64268e | taeseongkim | //basicHttpBinding.AllowCookies = false; |
255 | //basicHttpBinding.BypassProxyOnLocal = false; |
||
256 | 6a19b48d | taeseongkim | //basicHttpBinding.UseDefaultWebProxy = false; |
257 | //basicHttpBinding.ProxyAddress = new Uri("Http://localhost:8888"); |
||
258 | |||
259 | _binding = basicHttpBinding; |
||
260 | |||
261 | #endregion |
||
262 | |||
263 | #region custombinding |
||
264 | //var customBinding = new System.ServiceModel.Channels.CustomBinding() |
||
265 | //{ |
||
266 | // OpenTimeout = new TimeSpan(0, 15, 0), |
||
267 | // ReceiveTimeout = new TimeSpan(0, 15, 0), |
||
268 | // CloseTimeout = new TimeSpan(0, 15, 0), |
||
269 | // SendTimeout = new TimeSpan(0, 15, 0), |
||
270 | //}; |
||
271 | |||
272 | //var messageEncoding = new WcfExtensions.ServiceModel.Channels.CompressionBindingElement(); |
||
273 | //messageEncoding.Level = WcfExtensions.ServiceModel.Channels.CompressionLevel.Fast; |
||
274 | |||
275 | //var httpTranport = new System.ServiceModel.Channels.HttpTransportBindingElement |
||
276 | //{ |
||
277 | // MaxBufferPoolSize = Int32.MaxValue, |
||
278 | // MaxBufferSize = Int32.MaxValue, |
||
279 | // MaxReceivedMessageSize = Int32.MaxValue, |
||
280 | // RequestInitializationTimeout = new TimeSpan(0, 10, 0), |
||
281 | // UseDefaultWebProxy = false, |
||
282 | // ProxyAddress = new Uri("Http://127.0.0.1:8888") |
||
283 | //}; |
||
284 | |||
285 | |||
286 | //customBinding.CreateBindingElements(); |
||
287 | //customBinding.Elements.Add(messageEncoding); |
||
288 | //customBinding.Elements.Add(httpTranport); |
||
289 | |||
290 | |||
291 | //_binding = customBinding; |
||
292 | #endregion |
||
293 | |||
294 | 787a4489 | KangIngu | //Support.SetLicense(); |
295 | af22332b | ljiyeon | |
296 | 84c48033 | djkim | #if DEBUG |
297 | eb5cdefc | djkim | //sBaseServiceURL = CommonLib.Common.GetConfigString("BaseClientAddress", "URL", "", isExternal); |
298 | 566f0526 | taeseongkim | System.Diagnostics.Debug.WriteLine("sBaseServiceURL"); |
299 | 76dc223b | taeseongkim | BaseAddress = CommonLib.Common.GetConfigString("BaseClientAddress", "URL", "", isExternal); |
300 | 992a98b4 | KangIngu | #else |
301 | 76dc223b | taeseongkim | BaseAddress = CommonLib.Common.GetConfigString("BaseClientAddress", "URL", "", isExternal); |
302 | 992a98b4 | KangIngu | #endif |
303 | 6a19b48d | taeseongkim | |
304 | 76dc223b | taeseongkim | var UploadAddress = CommonLib.Common.GetConfigString("KCOM_kr_co_devdoftech_cloud_FileUpload", "URL", ""); |
305 | |||
306 | if (!string.IsNullOrWhiteSpace(UploadAddress) && !string.IsNullOrWhiteSpace(BaseAddress)) |
||
307 | { |
||
308 | 6a19b48d | taeseongkim | var uploadUri = new UriBuilder(UploadAddress); |
309 | 76dc223b | taeseongkim | var baseUri = new UriBuilder(BaseAddress); |
310 | |||
311 | 6a19b48d | taeseongkim | uploadUri.Host = baseUri.Host; |
312 | uploadUri.Port = baseUri.Port; |
||
313 | a1e2ba68 | taeseongkim | |
314 | 6a19b48d | taeseongkim | FileUploadUri = uploadUri.ToString(); |
315 | 76dc223b | taeseongkim | } |
316 | |||
317 | 6a19b48d | taeseongkim | App.FileLogger.Debug(string.Format("{0}/ServiceDeepView.svc/gzip", BaseAddress)); |
318 | 76dc223b | taeseongkim | _EndPoint = new EndpointAddress(string.Format("{0}/ServiceDeepView.svc", BaseAddress)); |
319 | 6a19b48d | taeseongkim | |
320 | 77cdac33 | taeseongkim | #if !DEBUG |
321 | #endif |
||
322 | a7bee7cf | taeseongkim | //var license = new License.Validator.Valid(BaseAddress + "/License"); |
323 | 1305c420 | taeseongkim | |
324 | a7bee7cf | taeseongkim | //license.ValidateError += License_ValidateError; |
325 | 1305c420 | taeseongkim | |
326 | a7bee7cf | taeseongkim | //license.GetLicense("public.xml"); |
327 | 1305c420 | taeseongkim | |
328 | a7bee7cf | taeseongkim | //if (license.Activate()) |
329 | //{ |
||
330 | 77cdac33 | taeseongkim | |
331 | a7bee7cf | taeseongkim | //} |
332 | //else |
||
333 | //{ |
||
334 | cf1cc862 | taeseongkim | |
335 | a7bee7cf | taeseongkim | //} |
336 | cf1cc862 | taeseongkim | |
337 | 77cdac33 | taeseongkim | |
338 | cf1cc862 | taeseongkim | await SplashScreenAsnyc(); |
339 | |||
340 | base.OnStartup(e); |
||
341 | System.Windows.Input.Keyboard.AddPreviewKeyDownHandler(this.MainWindow, KeyDownEvent); |
||
342 | |||
343 | |||
344 | 1edefbdf | taeseongkim | //System.Windows.Input.Keyboard.AddKeyDownHandler(this.MainWindow, KeyDownEvent); |
345 | 787a4489 | KangIngu | } |
346 | catch (Exception ex) |
||
347 | { |
||
348 | 274cde11 | taeseongkim | Logger.sendReqLog("OnStartUp",ex.ToString() + " " + ex.InnerException?.ToString(),1); |
349 | 787a4489 | KangIngu | } |
350 | f7e7a61a | ljiyeon | finally |
351 | { |
||
352 | cdfb57ff | taeseongkim | await SplashScreenAsnyc(); |
353 | 1137be84 | djkim | } |
354 | 787a4489 | KangIngu | } |
355 | a7346d3c | humkyung | |
356 | 1305c420 | taeseongkim | |
357 | b60e844d | taeseongkim | private void Current_DispatcherUnhandledException(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e) |
358 | { |
||
359 | 766cdfa1 | taeseongkim | Logger.sendReqLog("App Error ",e.Exception.ToString() + " " + e.Exception.InnerException?.ToString(), 1); |
360 | b60e844d | taeseongkim | } |
361 | |||
362 | fa48eb85 | taeseongkim | private void KeyDownEvent(object sender, KeyEventArgs e) |
363 | { |
||
364 | 8e6884a5 | taeseongkim | //if (e.Key == Key.Escape || e.Key == Key.Delete) |
365 | //{ |
||
366 | fa48eb85 | taeseongkim | System.Diagnostics.Debug.WriteLine("app key Event"); |
367 | Common.ViewerDataModel.Instance.SystemMain.KeyEventDownAction(sender, e); |
||
368 | 8e6884a5 | taeseongkim | //} |
369 | fa48eb85 | taeseongkim | } |
370 | |||
371 | cdfb57ff | taeseongkim | private async Task<bool> SplashScreenAsnyc() |
372 | { |
||
373 | int value = 100 / ISplashMessage.SplashMessageCnt; |
||
374 | |||
375 | for (int i = 1; i < ISplashMessage.SplashMessageCnt; i++) |
||
376 | { |
||
377 | d33ef543 | taeseongkim | await Task.Delay(3); |
378 | cdfb57ff | taeseongkim | await splashScreen.Dispatcher.InvokeAsync(() => splashScreen.Progress = i * value); |
379 | } |
||
380 | |||
381 | 2007ecaa | taeseongkim | //splashScreen.Close(); |
382 | cdfb57ff | taeseongkim | |
383 | return true; |
||
384 | } |
||
385 | |||
386 | e0cfc73c | ljiyeon | public static void splashString(string text) |
387 | { |
||
388 | Task.Factory.StartNew(() => |
||
389 | { |
||
390 | splashScreen.Dispatcher.Invoke(() => splashScreen.SplashText = text); |
||
391 | 2917ab4a | taeseongkim | }).ConfigureAwait(false); |
392 | e0cfc73c | ljiyeon | } |
393 | |||
394 | |||
395 | a7346d3c | humkyung | /// <summary> |
396 | /// log unhandled exception |
||
397 | /// </summary> |
||
398 | /// <author>humkyung</author> |
||
399 | /// <date>2019.05.21</date> |
||
400 | /// <param name="sender"></param> |
||
401 | /// <param name="e"></param> |
||
402 | private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) |
||
403 | { |
||
404 | try |
||
405 | { |
||
406 | 360e4f75 | djkim | App.FileLogger.Fatal(e.ExceptionObject as Exception); |
407 | a7346d3c | humkyung | } |
408 | catch (Exception ex) |
||
409 | { |
||
410 | 8614f701 | taeseongkim | Console.WriteLine(ex.InnerException?.ToString()); |
411 | a7346d3c | humkyung | } |
412 | finally |
||
413 | { |
||
414 | 8614f701 | taeseongkim | #if RELEASE |
415 | a7346d3c | humkyung | Environment.Exit(0); |
416 | 8614f701 | taeseongkim | #endif |
417 | a7346d3c | humkyung | } |
418 | } |
||
419 | |||
420 | c4a4d59c | ljiyeon | private void ErrorLogFileWrite(string Err) |
421 | { |
||
422 | ce3f0d7a | humkyung | App.FileLogger.Debug(Err); |
423 | c4a4d59c | ljiyeon | } |
424 | 787a4489 | KangIngu | } |
425 | } |