프로젝트

일반

사용자정보

개정판 b60e844d

IDb60e844d8a91bb5c57bcdba0a6a947b1965d7e0f
상위 902faaea
하위 de390cf6

김태성이(가) 4년 이상 전에 추가함

- 불필요한 BCL,RX,RestHttp 제거

Change-Id: I1025cb8ddaf03214d21d03b10ac39b2bc7955581

차이점 보기:

KCOM/App.xaml.cs
1 1

2 2
using KCOM.Common;
3

  
3
using KCOM.Views;
4
using log4net;
4 5
using System;
5
using System.Collections.Generic;
6 6
using System.ComponentModel;
7
using System.Configuration;
8
using System.Data;
9
using System.Diagnostics;
10 7
using System.IO;
11 8
using System.Linq;
12
using System.Net;
13
using System.Reflection;
14
using System.Runtime.CompilerServices;
15 9
using System.ServiceModel;
16
using System.Windows;
17
using System.Xml;
18
using log4net;
19
using System.Text;
20
using System.Runtime.InteropServices;
21
using KCOM.Views;
22 10
using System.Threading.Tasks;
11
using System.Windows;
23 12
using System.Windows.Input;
24 13
using System.Windows.Resources;
14
using log4net;
25 15

  
26
[assembly: log4net.Config.XmlConfigurator(Watch = false)]
27 16
namespace KCOM
28 17
{
29 18
    public class OpenProperties
......
62 51
        /// <summary>
63 52
        /// logger
64 53
        /// </summary>
65
        public static ILog DBLogger = null;
66 54
        public static ILog FileLogger = null;
67 55
        
68 56
        public static StreamResourceInfo DefaultArrowCursor;
......
127 115
        public App()
128 116
        {
129 117
            Telerik.Windows.Controls.StyleManager.ApplicationTheme = new Telerik.Windows.Controls.VisualStudio2013Theme();
118

  
119
            App.FileLogger = LogManager.GetLogger(typeof(App));
130 120
        }
131 121

  
132 122
        protected override void OnExit(ExitEventArgs e)
......
153 143

  
154 144
                splashScreen.Show();
155 145

  
156
                /// create log database and table
157
                //using (IAbstractDatabase database = new AppSQLiteDatabase() { FilePath = Path.Combine(AppDataFolder, "log4net.db") })
158
                //{
159
                //    string sSql = "CREATE TABLE IF NOT EXISTS Log (LogId INTEGER PRIMARY KEY,Date DATETIME NOT NULL,Level VARCHAR(50) NOT NULL,Logger VARCHAR(255) NOT NULL,Message TEXT DEFAULT NULL,StackTrace TEXT DEFAULT NULL);";
160
                //    database.ExecuteNonQuery(sSql);
161
                //}
162

  
163
                //log4net.GlobalContext.Properties["LogDBFilePath"] = Path.Combine(AppDataFolder, "log4net.db");
164
                //App.DBLogger = LogManager.GetLogger("DBLogger");
165

  
146
                App.Current.DispatcherUnhandledException += Current_DispatcherUnhandledException;
166 147
                /// up to here
167
                AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
168
                
169
                log4net.GlobalContext.Properties["LogFilePath"] = Path.Combine(AppDataFolder, "Log", "log4net.log");
170

  
171
                App.FileLogger = LogManager.GetLogger("EventLogger");
148
                //AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
172 149

  
173 150
                #region  //  DNS 체크
174 151

  
......
278 255
            }
279 256
        }
280 257

  
258
        private void Current_DispatcherUnhandledException(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e)
259
        {
260
            throw new NotImplementedException();
261
        }
262

  
281 263
        private void KeyDownEvent(object sender, KeyEventArgs e)
282 264
        {
283 265
            if (e.Key == Key.Escape || e.Key == Key.Delete)
KCOM/Common/ImageSourceHelper.cs
1 1
using System;
2 2
using System.Collections.Generic;
3 3
using System.Linq;
4
using System.Net.Http;
4 5
using System.Text;
5 6
using System.Threading.Tasks;
6 7
using System.Windows.Media;
KCOM/KCOM.csproj
309 309
      <HintPath>..\packages\System.Windows.Interactivity.WPF.2.0.20525\lib\net40\Microsoft.Expression.Interactions.dll</HintPath>
310 310
      <Private>True</Private>
311 311
    </Reference>
312
    <Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
313
      <HintPath>..\packages\Newtonsoft.Json.10.0.3\lib\net40\Newtonsoft.Json.dll</HintPath>
314
    </Reference>
315
    <Reference Include="RestSharp, Version=105.2.3.0, Culture=neutral, processorArchitecture=MSIL">
316
      <HintPath>..\packages\RestSharp.105.2.3\lib\net4\RestSharp.dll</HintPath>
312
    <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
313
      <HintPath>..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
317 314
    </Reference>
318 315
    <Reference Include="Svg2Xaml, Version=0.3.0.5, Culture=neutral, processorArchitecture=MSIL">
319 316
      <HintPath>..\packages\Svg2Xaml.0.3.0.5\lib\net40\Svg2Xaml.dll</HintPath>
......
323 320
    <Reference Include="System.Configuration" />
324 321
    <Reference Include="System.Data" />
325 322
    <Reference Include="System.Data.Entity" />
326
    <Reference Include="System.Data.SQLite, Version=1.0.110.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL">
327
      <HintPath>..\packages\System.Data.SQLite.Core.1.0.110.0\lib\net45\System.Data.SQLite.dll</HintPath>
328
    </Reference>
329
    <Reference Include="System.Data.SQLite.EF6, Version=1.0.110.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL">
330
      <HintPath>..\packages\System.Data.SQLite.EF6.1.0.110.0\lib\net45\System.Data.SQLite.EF6.dll</HintPath>
331
    </Reference>
332
    <Reference Include="System.Data.SQLite.Linq, Version=1.0.110.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL">
333
      <HintPath>..\packages\System.Data.SQLite.Linq.1.0.110.0\lib\net45\System.Data.SQLite.Linq.dll</HintPath>
334
    </Reference>
335 323
    <Reference Include="System.Drawing" />
336 324
    <Reference Include="System.EnterpriseServices" />
337 325
    <Reference Include="System.Management" />
338 326
    <Reference Include="System.Net" />
339
    <Reference Include="System.Net.Http, Version=2.2.29.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
340
      <HintPath>..\packages\Microsoft.Net.Http.2.2.29\lib\net40\System.Net.Http.dll</HintPath>
341
    </Reference>
342
    <Reference Include="System.Net.Http.Extensions, Version=2.2.29.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
343
      <HintPath>..\packages\Microsoft.Net.Http.2.2.29\lib\net40\System.Net.Http.Extensions.dll</HintPath>
344
    </Reference>
345
    <Reference Include="System.Net.Http.Primitives, Version=2.2.29.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
346
      <HintPath>..\packages\Microsoft.Net.Http.2.2.29\lib\net40\System.Net.Http.Primitives.dll</HintPath>
347
    </Reference>
348
    <Reference Include="System.Net.Http.WebRequest, Version=2.2.29.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
349
      <HintPath>..\packages\Microsoft.Net.Http.2.2.29\lib\net40\System.Net.Http.WebRequest.dll</HintPath>
350
    </Reference>
327
    <Reference Include="System.Net.Http" />
351 328
    <Reference Include="System.Net.Json, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
352 329
      <SpecificVersion>False</SpecificVersion>
353 330
      <HintPath>bin\x64\Debug\System.Net.Json.dll</HintPath>
354 331
    </Reference>
355
    <Reference Include="System.Runtime, Version=2.6.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
356
      <HintPath>..\packages\Microsoft.Bcl.1.1.10\lib\net40\System.Runtime.dll</HintPath>
357
    </Reference>
358 332
    <Reference Include="System.Runtime.Serialization" />
359 333
    <Reference Include="System.ServiceModel" />
360
    <Reference Include="System.Threading.Tasks, Version=2.6.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
361
      <HintPath>..\packages\Microsoft.Bcl.1.1.10\lib\net40\System.Threading.Tasks.dll</HintPath>
362
    </Reference>
363 334
    <Reference Include="System.Web" />
364 335
    <Reference Include="System.Web.Services" />
365 336
    <Reference Include="System.Windows.Forms" />
......
421 392
      <Generator>MSBuild:Compile</Generator>
422 393
      <SubType>Designer</SubType>
423 394
    </ApplicationDefinition>
424
    <Compile Include="AbstractDatabase.cs" />
425
    <Compile Include="AppSQLiteDatabase.cs" />
426 395
    <Compile Include="Behaviors\ListViewColumnSizeAutoBehavior.cs" />
427 396
    <Compile Include="Behaviors\RadListBoxDragVisualProvider.cs" />
428 397
    <Compile Include="Behaviors\WindowBehavior.cs" />
......
518 487
    <Compile Include="Extensions\TaskExtensions.cs" />
519 488
    <Compile Include="Extensions\VisualHelper.cs" />
520 489
    <Compile Include="Extensions\WindowHelper.cs" />
521
    <Compile Include="IAbstractDatabase.cs" />
522 490
    <Compile Include="Logger.cs" />
523 491
    <Compile Include="Messenger\ConversationView.xaml.cs">
524 492
      <DependentUpon>ConversationView.xaml</DependentUpon>
......
860 828
    <None Include="Connected Services\ServiceDeepView\ServiceDeepView98.xsd">
861 829
      <SubType>Designer</SubType>
862 830
    </None>
831
    <None Include="Log.config">
832
      <SubType>Designer</SubType>
833
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
834
    </None>
863 835
    <None Include="packages.config">
864 836
      <SubType>Designer</SubType>
865 837
    </None>
......
930 902
    <Resource Include="Resources\Images\Logo\Daelim.jpg" />
931 903
  </ItemGroup>
932 904
  <ItemGroup>
933
    <Resource Include="Resources\Images\MenuImage\1.png" />
934
    <Resource Include="Resources\Images\MenuImage\100screen.png" />
935
    <Resource Include="Resources\Images\MenuImage\100screen_1.png" />
936
    <Resource Include="Resources\Images\MenuImage\100screen_2.png" />
937
    <Resource Include="Resources\Images\MenuImage\180.png" />
938
    <Resource Include="Resources\Images\MenuImage\2.png" />
939
    <Resource Include="Resources\Images\MenuImage\3.png" />
940
    <Resource Include="Resources\Images\MenuImage\4.png" />
941
    <Resource Include="Resources\Images\MenuImage\90_1.png" />
942
    <Resource Include="Resources\Images\MenuImage\90_2.png" />
943
    <Resource Include="Resources\Images\MenuImage\add.png" />
944
    <Resource Include="Resources\Images\MenuImage\adding.png" />
945
    <Resource Include="Resources\Images\MenuImage\addSymbol.png" />
946
    <Resource Include="Resources\Images\MenuImage\Angle.png" />
947
    <Resource Include="Resources\Images\MenuImage\approved.png" />
948
    <Resource Include="Resources\Images\MenuImage\Arc.png" />
949
    <Resource Include="Resources\Images\MenuImage\ArcTransOn.png" />
950
    <Resource Include="Resources\Images\MenuImage\arrow skip right.png" />
951
    <Resource Include="Resources\Images\MenuImage\Arrow.png" />
952
    <Resource Include="Resources\Images\MenuImage\arrowCloudText.png" />
953
    <Resource Include="Resources\Images\MenuImage\arrowText.png" />
954
    <Resource Include="Resources\Images\MenuImage\ArrowTextTrans.png" />
955
    <Resource Include="Resources\Images\MenuImage\ArrowTextTrans_Border.png" />
956
    <Resource Include="Resources\Images\MenuImage\ArrowTextTrans_Cloud.png" />
957
    <Resource Include="Resources\Images\MenuImage\ArrowText_Border.png" />
958
    <Resource Include="Resources\Images\MenuImage\ArrowText_Cloud.png" />
959
    <Resource Include="Resources\Images\MenuImage\arrowText_Normal.png" />
960
    <Resource Include="Resources\Images\MenuImage\Arrow_Curve.png" />
961
    <Resource Include="Resources\Images\MenuImage\ArzoView.png" />
962
    <Resource Include="Resources\Images\MenuImage\back.png" />
963
    <Resource Include="Resources\Images\MenuImage\back_2.png" />
964
    <Resource Include="Resources\Images\MenuImage\back_3.png" />
965
    <Resource Include="Resources\Images\MenuImage\bold.png" />
966
    <Resource Include="Resources\Images\MenuImage\bookmark.png" />
967
    <Resource Include="Resources\Images\MenuImage\ByRadius.png" />
968
    <Resource Include="Resources\Images\MenuImage\calendar.png" />
969
    <Resource Include="Resources\Images\MenuImage\check-all.png" />
970
    <Resource Include="Resources\Images\MenuImage\check.png" />
971
    <Resource Include="Resources\Images\MenuImage\check_2.png" />
972
    <Resource Include="Resources\Images\MenuImage\check_3.png" />
973
    <Resource Include="Resources\Images\MenuImage\chevron-up.png" />
974
    <Resource Include="Resources\Images\MenuImage\circle-icon.png" />
975
    <Resource Include="Resources\Images\MenuImage\circle-icon_Hatch.png" />
976
    <Resource Include="Resources\Images\MenuImage\circle-icon_None.png" />
977
    <Resource Include="Resources\Images\MenuImage\Circle.png" />
978
    <Resource Include="Resources\Images\MenuImage\CircularArc.png" />
979
    <Resource Include="Resources\Images\MenuImage\Close.png" />
980
    <Resource Include="Resources\Images\MenuImage\cloud.png" />
981
    <Resource Include="Resources\Images\MenuImage\cloud_basic_Hatch.png" />
982
    <Resource Include="Resources\Images\MenuImage\cloud_basic_red.png" />
983
    <Resource Include="Resources\Images\MenuImage\cloud_basic_red_Fill.png" />
984
    <Resource Include="Resources\Images\MenuImage\Cloud_Fill.png" />
985
    <Resource Include="Resources\Images\MenuImage\Cloud_Hatch.png" />
986
    <Resource Include="Resources\Images\MenuImage\color-line2.png" />
987
    <Resource Include="Resources\Images\MenuImage\contact.png" />
988
    <Resource Include="Resources\Images\MenuImage\control left.png" />
989
    <Resource Include="Resources\Images\MenuImage\control right.png" />
990
    <Resource Include="Resources\Images\MenuImage\control stop left.png" />
991
    <Resource Include="Resources\Images\MenuImage\control stop right.png" />
992
    <Resource Include="Resources\Images\MenuImage\ControlRotateLeft.png" />
993
    <Resource Include="Resources\Images\MenuImage\ControlRotateRight.png" />
994
    <Resource Include="Resources\Images\MenuImage\ControlRotation.png" />
995
    <Resource Include="Resources\Images\MenuImage\control_RL.png" />
996
    <Resource Include="Resources\Images\MenuImage\control_RR.png" />
997
    <Resource Include="Resources\Images\MenuImage\cursor_hand.png" />
998
    <Resource Include="Resources\Images\MenuImage\cursor_hand2.png" />
999
    <Resource Include="Resources\Images\MenuImage\curved_line.png" />
1000
    <Resource Include="Resources\Images\MenuImage\date.png" />
1001
    <Resource Include="Resources\Images\MenuImage\delete.png" />
1002
    <Resource Include="Resources\Images\MenuImage\Delete_2.png" />
1003
    <Resource Include="Resources\Images\MenuImage\delSymbol.png" />
1004
    <Resource Include="Resources\Images\MenuImage\Dimmension.png" />
1005
    <Resource Include="Resources\Images\MenuImage\Dimmension_WidhGuide.png" />
1006
    <Resource Include="Resources\Images\MenuImage\document-delete.png" />
1007
    <Resource Include="Resources\Images\MenuImage\document-horizontal.png" />
1008
    <Resource Include="Resources\Images\MenuImage\document-new.png" />
1009
    <Resource Include="Resources\Images\MenuImage\document-team.png" />
1010
    <Resource Include="Resources\Images\MenuImage\document.png" />
1011
    <Resource Include="Resources\Images\MenuImage\down.png" />
1012
    <Resource Include="Resources\Images\MenuImage\DrawingMode.png" />
1013
    <Resource Include="Resources\Images\MenuImage\edit-cut.png" />
1014
    <Resource Include="Resources\Images\MenuImage\edit.png" />
1015
    <Resource Include="Resources\Images\MenuImage\ellipse.png" />
1016
    <Resource Include="Resources\Images\MenuImage\Ellipse__.png" />
1017
    <Resource Include="Resources\Images\MenuImage\EllipticalArc.png" />
1018
    <Resource Include="Resources\Images\MenuImage\eraser.png" />
1019
    <Resource Include="Resources\Images\MenuImage\eraserAll.png" />
1020
    <Resource Include="Resources\Images\MenuImage\eraserClear.png" />
1021
    <Resource Include="Resources\Images\MenuImage\Excel.png" />
1022
    <Resource Include="Resources\Images\MenuImage\final.png" />
1023
    <Resource Include="Resources\Images\MenuImage\final_pdf2.png" />
1024
    <Resource Include="Resources\Images\MenuImage\fontcolor.png" />
1025
    <Resource Include="Resources\Images\MenuImage\fontdialog.png" />
1026
    <Resource Include="Resources\Images\MenuImage\fontdialog2.png" />
1027
    <Resource Include="Resources\Images\MenuImage\fontdialog3.png" />
1028
    <Resource Include="Resources\Images\MenuImage\fontdialog_1.png" />
1029
    <Resource Include="Resources\Images\MenuImage\forward.png" />
1030
    <Resource Include="Resources\Images\MenuImage\forward_2.png" />
1031
    <Resource Include="Resources\Images\MenuImage\forward_3.png" />
1032
    <Resource Include="Resources\Images\MenuImage\freemode.png" />
1033
    <Resource Include="Resources\Images\MenuImage\full_screen.png" />
1034
    <Resource Include="Resources\Images\MenuImage\graphix.png" />
1035
    <Resource Include="Resources\Images\MenuImage\help.png" />
1036
    <Resource Include="Resources\Images\MenuImage\hexagon.png" />
1037
    <Resource Include="Resources\Images\MenuImage\hi.png" />
1038
    <Resource Include="Resources\Images\MenuImage\highlight.png" />
1039
    <Resource Include="Resources\Images\MenuImage\history.png" />
1040
    <Resource Include="Resources\Images\MenuImage\icon.png" />
1041
    <Resource Include="Resources\Images\MenuImage\icon2.png" />
1042
    <Resource Include="Resources\Images\MenuImage\icon2_2.png" />
1043
    <Resource Include="Resources\Images\MenuImage\info-user.png" />
1044
    <Resource Include="Resources\Images\MenuImage\InkSelect.png" />
1045
    <Resource Include="Resources\Images\MenuImage\italic.png" />
1046
    <Resource Include="Resources\Images\MenuImage\Join.png" />
1047
    <Resource Include="Resources\Images\MenuImage\kview.png" />
1048
    <Resource Include="Resources\Images\MenuImage\Layers.png" />
1049
    <Resource Include="Resources\Images\MenuImage\layer_raiselayer.png" />
1050
    <Resource Include="Resources\Images\MenuImage\layout.png" />
1051
    <Resource Include="Resources\Images\MenuImage\Layout_AllHidden.png" />
1052
    <Resource Include="Resources\Images\MenuImage\Layout_MarkHisHidden.png" />
1053
    <Resource Include="Resources\Images\MenuImage\Layout_Normal.png" />
1054
    <Resource Include="Resources\Images\MenuImage\line.png" />
1055
    <Resource Include="Resources\Images\MenuImage\linecolor.png" />
1056
    <Resource Include="Resources\Images\MenuImage\Line_1.png" />
1057
    <Resource Include="Resources\Images\MenuImage\Line_2.png" />
1058
    <Resource Include="Resources\Images\MenuImage\line_cicle.png" />
1059
    <Resource Include="Resources\Images\MenuImage\line_squre.png" />
1060
    <Resource Include="Resources\Images\MenuImage\line_tri.png" />
1061
    <Resource Include="Resources\Images\MenuImage\Line__.png" />
1062
    <Resource Include="Resources\Images\MenuImage\link-4.png" />
1063
    <Resource Include="Resources\Images\MenuImage\link-delete.png" />
1064
    <Resource Include="Resources\Images\MenuImage\link.png" />
1065
    <Resource Include="Resources\Images\MenuImage\loader.gif" />
1066
    <Resource Include="Resources\Images\MenuImage\lock.png" />
1067
    <Resource Include="Resources\Images\MenuImage\lock_2.png" />
1068
    <Resource Include="Resources\Images\MenuImage\lock_yellow.png" />
1069
    <Resource Include="Resources\Images\MenuImage\mail-new.png" />
1070
    <Resource Include="Resources\Images\MenuImage\mail.png" />
1071
    <Resource Include="Resources\Images\MenuImage\mail_open.png" />
1072
    <Resource Include="Resources\Images\MenuImage\map.png" />
1073
    <Resource Include="Resources\Images\MenuImage\mark.png" />
1074
    <Resource Include="Resources\Images\MenuImage\maximize.png" />
1075
    <Resource Include="Resources\Images\MenuImage\Modify.png" />
1076
    <Resource Include="Resources\Images\MenuImage\move.png" />
1077
    <Resource Include="Resources\Images\MenuImage\moveDrag.png" />
1078
    <Resource Include="Resources\Images\MenuImage\multiLine.png" />
1079
    <Resource Include="Resources\Images\MenuImage\MultiSelection.png" />
1080
    <Resource Include="Resources\Images\MenuImage\newArrow_right.png" />
1081
    <Resource Include="Resources\Images\MenuImage\newArrow_right_2.png" />
1082
    <Resource Include="Resources\Images\MenuImage\newArrow_right_3.png" />
1083
    <Resource Include="Resources\Images\MenuImage\NewDocument.png" />
1084
    <Resource Include="Resources\Images\MenuImage\New_1.png" />
1085
    <Resource Include="Resources\Images\MenuImage\New_2.png" />
1086
    <Resource Include="Resources\Images\MenuImage\New_3.png" />
1087
    <Resource Include="Resources\Images\MenuImage\New_4.png" />
1088
    <Resource Include="Resources\Images\MenuImage\notice.png" />
1089
    <Resource Include="Resources\Images\MenuImage\notice_board.png" />
1090
    <Resource Include="Resources\Images\MenuImage\outline.png" />
1091
    <Resource Include="Resources\Images\MenuImage\page.png" />
1092
    <Resource Include="Resources\Images\MenuImage\page_copy.png" />
1093
    <Resource Include="Resources\Images\MenuImage\page_white.png" />
1094
    <Resource Include="Resources\Images\MenuImage\page_white_stack.png" />
1095
    <Resource Include="Resources\Images\MenuImage\page_white_stack_2.png" />
1096
    <Resource Include="Resources\Images\MenuImage\Paste.png" />
1097
    <Resource Include="Resources\Images\MenuImage\path.png" />
1098
    <Resource Include="Resources\Images\MenuImage\path4.png" />
1099
    <Resource Include="Resources\Images\MenuImage\PDF.png" />
1100
    <Resource Include="Resources\Images\MenuImage\pdf_P.png" />
1101
    <Resource Include="Resources\Images\MenuImage\pen.png" />
1102
    <Resource Include="Resources\Images\MenuImage\pencil.png" />
1103
    <Resource Include="Resources\Images\MenuImage\Per.png" />
1104
    <Resource Include="Resources\Images\MenuImage\Perpendicular.png" />
1105
    <Resource Include="Resources\Images\MenuImage\Picture.png" />
1106
    <Resource Include="Resources\Images\MenuImage\polygon.png" />
1107
    <Resource Include="Resources\Images\MenuImage\polygon_Fill.png" />
1108
    <Resource Include="Resources\Images\MenuImage\polygon_Hatch.png" />
1109
    <Resource Include="Resources\Images\MenuImage\Polyline.png" />
1110
    <Resource Include="Resources\Images\MenuImage\printer.png" />
1111
    <Resource Include="Resources\Images\MenuImage\Ray.png" />
1112
    <Resource Include="Resources\Images\MenuImage\rect.png" />
1113
    <Resource Include="Resources\Images\MenuImage\rectangle-icon.png" />
1114
    <Resource Include="Resources\Images\MenuImage\rectangle-icon_Hatch.png" />
1115
    <Resource Include="Resources\Images\MenuImage\rectangle-icon_None.png" />
1116
    <Resource Include="Resources\Images\MenuImage\rectangle.png" />
1117
    <Resource Include="Resources\Images\MenuImage\Rectangle_Fill.png" />
1118
    <Resource Include="Resources\Images\MenuImage\rectangle_new.png" />
1119
    <Resource Include="Resources\Images\MenuImage\Rectcloud.png" />
1120
    <Resource Include="Resources\Images\MenuImage\RectCloud_Fill.png" />
1121
    <Resource Include="Resources\Images\MenuImage\RectCloud_Hatch.png" />
1122
    <Resource Include="Resources\Images\MenuImage\RectCloud_N.png" />
1123
    <Resource Include="Resources\Images\MenuImage\RectCloud_None.png" />
1124
    <Resource Include="Resources\Images\MenuImage\RectCloud_None_N.png" />
1125
    <Resource Include="Resources\Images\MenuImage\ReDo.png" />
1126
    <Resource Include="Resources\Images\MenuImage\Refresh.png" />
1127
    <Resource Include="Resources\Images\MenuImage\RegularPolygon.png" />
1128
    <Resource Include="Resources\Images\MenuImage\remove.png" />
1129
    <Resource Include="Resources\Images\MenuImage\remove_2.png" />
1130
    <Resource Include="Resources\Images\MenuImage\rename.png" />
1131
    <Resource Include="Resources\Images\MenuImage\resize.png" />
1132
    <Resource Include="Resources\Images\MenuImage\resize_new.png" />
1133
    <Resource Include="Resources\Images\MenuImage\resize_new2.png" />
1134
    <Resource Include="Resources\Images\MenuImage\resize_non.png" />
1135
    <Resource Include="Resources\Images\MenuImage\rotate-90.png" />
1136
    <Resource Include="Resources\Images\MenuImage\rotate-90_new.png" />
1137
    <Resource Include="Resources\Images\MenuImage\rotate1.png" />
1138
    <Resource Include="Resources\Images\MenuImage\rotate2.png" />
1139
    <Resource Include="Resources\Images\MenuImage\rotate3.png" />
1140
    <Resource Include="Resources\Images\MenuImage\rotate90.png" />
1141
    <Resource Include="Resources\Images\MenuImage\rotate90_new.png" />
1142
    <Resource Include="Resources\Images\MenuImage\rounded_rectangle.png" />
1143
    <Resource Include="Resources\Images\MenuImage\ruler.png" />
1144
    <Resource Include="Resources\Images\MenuImage\Save.png" />
1145
    <Resource Include="Resources\Images\MenuImage\Save_Publish.png" />
1146
    <Resource Include="Resources\Images\MenuImage\schedule.png" />
1147
    <Resource Include="Resources\Images\MenuImage\Segmenet.png" />
1148
    <Resource Include="Resources\Images\MenuImage\Segment.png" />
1149
    <Resource Include="Resources\Images\MenuImage\Select.png" />
1150
    <Resource Include="Resources\Images\MenuImage\selection.png" />
1151
    <Resource Include="Resources\Images\MenuImage\selectionMode.png" />
1152
    <Resource Include="Resources\Images\MenuImage\selection_new.png" />
1153
    <Resource Include="Resources\Images\MenuImage\Select_2.png" />
1154
    <Resource Include="Resources\Images\MenuImage\sign.png" />
1155
    <Resource Include="Resources\Images\MenuImage\signature.png" />
1156
    <Resource Include="Resources\Images\MenuImage\signatureRegister.png" />
1157
    <Resource Include="Resources\Images\MenuImage\signature_2.png" />
1158
    <Resource Include="Resources\Images\MenuImage\solid_color.png" />
1159
    <Resource Include="Resources\Images\MenuImage\solid_Rectangle.png" />
1160
    <Resource Include="Resources\Images\MenuImage\stamp.png" />
1161
    <Resource Include="Resources\Images\MenuImage\star1.png" />
1162
    <Resource Include="Resources\Images\MenuImage\sum.png" />
1163
    <Resource Include="Resources\Images\MenuImage\system-help.png" />
1164
    <Resource Include="Resources\Images\MenuImage\talk.png" />
1165
    <Resource Include="Resources\Images\MenuImage\task.png" />
1166
    <Resource Include="Resources\Images\MenuImage\Text.png" />
1167
    <Resource Include="Resources\Images\MenuImage\TextTypeChange.png" />
1168
    <Resource Include="Resources\Images\MenuImage\Text_Border.png" />
1169
    <Resource Include="Resources\Images\MenuImage\Text_Cloud.png" />
1170
    <Resource Include="Resources\Images\MenuImage\tips.png" />
1171
    <Resource Include="Resources\Images\MenuImage\toLine.png" />
1172
    <Resource Include="Resources\Images\MenuImage\transform_rotate.png" />
1173
    <Resource Include="Resources\Images\MenuImage\transform_rotate_R.png" />
1174
    <Resource Include="Resources\Images\MenuImage\tri.png" />
1175
    <Resource Include="Resources\Images\MenuImage\triangle-icon.png" />
1176
    <Resource Include="Resources\Images\MenuImage\triangle-icon_Hatch.png" />
1177
    <Resource Include="Resources\Images\MenuImage\triangle-icon_None.png" />
1178
    <Resource Include="Resources\Images\MenuImage\triangle.png" />
1179
    <Resource Include="Resources\Images\MenuImage\TypicalCopy.png" />
1180
    <Resource Include="Resources\Images\MenuImage\underline.png" />
1181
    <Resource Include="Resources\Images\MenuImage\UnDo.png" />
1182
    <Resource Include="Resources\Images\MenuImage\up.png" />
1183
    <Resource Include="Resources\Images\MenuImage\update.png" />
1184
    <Resource Include="Resources\Images\MenuImage\video.png" />
1185
    <Resource Include="Resources\Images\MenuImage\xhtml_add.png" />
1186
    <Resource Include="Resources\Images\MenuImage\xhtml_delete.png" />
1187
    <Resource Include="Resources\Images\MenuImage\zoom.png" />
1188
    <Resource Include="Resources\Images\MenuImage\ZoomIn.png" />
1189
    <Resource Include="Resources\Images\MenuImage\ZoomInOut.png" />
1190
    <Resource Include="Resources\Images\MenuImage\ZoomOut.png" />
1191
    <Resource Include="Resources\Images\MenuImage\zoom_in.png" />
1192
    <Resource Include="Resources\Images\MenuImage\zoom_in_out.png" />
1193
    <Resource Include="Resources\Images\MenuImage\zoom_out.png" />
1194
    <Resource Include="Resources\Images\MenuImage\zoom_window.png" />
1195
  </ItemGroup>
1196
  <ItemGroup>
1197 905
    <Resource Include="Resources\Images\OCSStatusImage\BLANK.png" />
1198 906
    <Resource Include="Resources\Images\OCSStatusImage\IMNAWAY.PNG" />
1199 907
    <Resource Include="Resources\Images\OCSStatusImage\IMNAWAYOOF.PNG" />
......
1214 922
    <Resource Include="Resources\Images\OCSStatusImage\IMNUNK.PNG" />
1215 923
  </ItemGroup>
1216 924
  <ItemGroup>
1217
    <Resource Include="Resources\Images\MenuImage\multiLine2.png" />
1218
  </ItemGroup>
1219
  <ItemGroup>
1220 925
    <COMReference Include="Microsoft.Office.Core">
1221 926
      <Guid>{2DF8D04C-5BFA-101B-BDE5-00AA0044DE52}</Guid>
1222 927
      <VersionMajor>2</VersionMajor>
......
1545 1250
    <None Include="Connected Services\ServiceDeepView\ServiceDeepView.disco" />
1546 1251
  </ItemGroup>
1547 1252
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
1548
  <Import Project="..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets" Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" />
1549 1253
  <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
1550 1254
    <PropertyGroup>
1551 1255
      <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
1552 1256
    </PropertyGroup>
1553
    <Error Condition="!Exists('..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets'))" />
1554
    <Error Condition="!Exists('..\packages\System.Data.SQLite.Core.1.0.110.0\build\net45\System.Data.SQLite.Core.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\System.Data.SQLite.Core.1.0.110.0\build\net45\System.Data.SQLite.Core.targets'))" />
1555 1257
    <Error Condition="!Exists('..\packages\Obfuscar.2.2.23\build\obfuscar.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Obfuscar.2.2.23\build\obfuscar.props'))" />
1556 1258
  </Target>
1557 1259
  <PropertyGroup>
......
1561 1263
rem MOVE $(TargetDir)DLL\Teigha\*.* $(TargetDir)
1562 1264
</PostBuildEvent>
1563 1265
  </PropertyGroup>
1564
  <Import Project="..\packages\System.Data.SQLite.Core.1.0.110.0\build\net45\System.Data.SQLite.Core.targets" Condition="Exists('..\packages\System.Data.SQLite.Core.1.0.110.0\build\net45\System.Data.SQLite.Core.targets')" />
1565 1266
  <UsingTask TaskName="TransformXml" AssemblyFile="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Web\Microsoft.Web.Publishing.Tasks.dll" />
1566 1267
  <Target Name="app_config_AfterCompile" AfterTargets="AfterCompile" Condition="Exists('app.$(Configuration).config')">
1567 1268
    <!--Generate transformed app config in the intermediate directory-->
......
1584 1285
  </Target>
1585 1286
  <PropertyGroup>
1586 1287
    <PreBuildEvent>if $(ConfigurationName) == Debug (
1587
     copy /Y  "$(SolutionDir)\INI\MARKUS.ini" "C:\ProgramData\MARKUS\MARKUS.ini"
1288
     xcopy /i /e /s /y /f "$(SolutionDir)\INI\MARKUS.ini" "C:\ProgramData\MARKUS\MARKUS.ini"
1588 1289
)
1589 1290

  
1590 1291
if $(ConfigurationName) == Debug_DevDoftech (
1591
     copy /Y  "$(SolutionDir)\INI\MARKUS_Doftech.ini" "C:\ProgramData\MARKUS\MARKUS.ini"
1292
     copy /Y "$(SolutionDir)\INI\MARKUS_Doftech.ini" "C:\ProgramData\MARKUS\MARKUS.ini"
1592 1293
)
1593 1294

  
1594 1295
if $(ConfigurationName) == Debug_HyoSung (
1595
     copy /Y  "$(SolutionDir)\INI\MARKUS_HyoSung_Debug.ini" "C:\ProgramData\MARKUS\MARKUS.ini"
1296
     copy /Y "$(SolutionDir)\INI\MARKUS_HyoSung_Debug.ini" "C:\ProgramData\MARKUS\MARKUS.ini"
1596 1297
 )
1597 1298

  
1598 1299
 if $(ConfigurationName) == Release_HyoSung (
1599
     copy /Y  "$(SolutionDir)\INI\MARKUS_HyoSung.ini" "C:\ProgramData\MARKUS\MARKUS.ini"
1300
     copy /Y "$(SolutionDir)\INI\MARKUS_HyoSung.ini" "C:\ProgramData\MARKUS\MARKUS.ini"
1600 1301
)
1601 1302
 if $(ConfigurationName) == Release_PEMSS (
1602
     copy /Y  "$(SolutionDir)\INI\MARKUS_PEMSS.ini" "C:\ProgramData\MARKUS\MARKUS.ini"
1303
     copy /Y "$(SolutionDir)\INI\MARKUS_PEMSS.ini" "C:\ProgramData\MARKUS\MARKUS.ini"
1603 1304
)
1604 1305
if $(ConfigurationName) == Debug_SNI (
1605
     copy /Y  "$(SolutionDir)\INI\MARKUS_SNI.ini" "C:\ProgramData\MARKUS\MARKUS.ini"
1306
     copy /Y "$(SolutionDir)\INI\MARKUS_SNI.ini" "C:\ProgramData\MARKUS\MARKUS.ini"
1606 1307
)</PreBuildEvent>
1607 1308
  </PropertyGroup>
1608 1309
  <Target Name="app_Release_config_AfterBuild" AfterTargets="AfterBuild" Condition="Exists('app.Release.$(Configuration).config')">
KCOM/Properties/AssemblyInfo.cs
53 53
// [assembly: AssemblyVersion("1.0.*")]
54 54
[assembly: AssemblyVersion("2.0.1.100")]
55 55
[assembly: AssemblyFileVersion("2.0.1.100")]
56
[assembly: log4net.Config.XmlConfigurator(ConfigFile = "Log.config", Watch = true)]
KCOM/Services/BaseServices.cs
4 4
using KCOM.ServiceDeepView;
5 5
using KCOMDataModel.DataModel;
6 6
using Newtonsoft.Json;
7
using RestSharp;
8 7
using System;
9 8
using System.Collections.Generic;
10 9
using System.Collections.ObjectModel;
KCOM/app.config
7 7
    <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
8 8
      <section name="KCOM.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
9 9
    </sectionGroup>
10
    <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
11
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
10
    <!--<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />-->
11
    <!--<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />-->
12 12
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
13 13
  </configSections>
14 14
  <startup>
15 15
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
16 16
  </startup>
17
  <log4net>
18
    <appender name="AdoNetAppender" type="log4net.Appender.AdoNetAppender">
19
      <bufferSize value="100" />
20
      <connectionType value="System.Data.SQLite.SQLiteConnection, System.Data.SQLite" />
21
      <connectionString type="log4net.Util.PatternString" value="Data Source=%property{LogDBFilePath};Version=3;Synchronous=Off" />
22
      <commandText value="INSERT INTO Log (Date, Level, Logger, Message, StackTrace) VALUES (@Date, @Level, @Logger, @Message, @StackTrace)" />
23
      <parameter>
24
        <parameterName value="@Date" />
25
        <dbType value="DateTime" />
26
        <layout type="log4net.Layout.RawTimeStampLayout" />
27
      </parameter>
28
      <parameter>
29
        <parameterName value="@Level" />
30
        <dbType value="String" />
31
        <layout type="log4net.Layout.PatternLayout">
32
          <conversionPattern value="%level" />
33
        </layout>
34
      </parameter>
35
      <parameter>
36
        <parameterName value="@Logger" />
37
        <dbType value="String" />
38
        <layout type="log4net.Layout.PatternLayout">
39
          <conversionPattern value="%logger" />
40
        </layout>
41
      </parameter>
42
      <parameter>
43
        <parameterName value="@Message" />
44
        <dbType value="String" />
45
        <layout type="log4net.Layout.PatternLayout">
46
          <conversionPattern value="%message" />
47
        </layout>
48
      </parameter>
49
      <parameter>
50
        <parameterName value="@StackTrace" />
51
        <dbType value="String" />
52
        <layout type="log4net.Layout.PatternLayout">
53
          <conversionPattern value="%stacktrace" />
54
        </layout>
55
      </parameter>
56
    </appender>
57
    <appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
58
      <file type="log4net.Util.PatternString" value="%property{LogFilePath}" />
59
      <datePattern value="yyyy-MM-dd.log" />
60
      <appendToFile value="true" />
61
      <rollingStyle value="Size" />
62
      <maximumFileSize value="100KB" />
63
      <maxSizeRollBackups value="100" />
64
      <!-- Use -1 for unlimited-->
65
      <staticLogFileName value="true" />
66
      <countDirection value="1" />
67
      <layout type="log4net.Layout.PatternLayout">
68
        <!--<header value="DATE          MESSAGE&#13;&#10;" /> -->
69
        <param name="ConversionPattern" value="%date %message %newline" />
70
      </layout>
71
    </appender>
72
    <root>
73
      <level value="ALL" />
74
    </root>
75
    <logger name="DBLogger" additivity="false">
76
      <level value="ALL" />
77
      <appender-ref ref="AdoNetAppender" />
78
    </logger>
79
    <logger name="EventLogger" additivity="false">
80
      <level value="ALL" />
81
      <appender-ref ref="RollingFileAppender" />
82
    </logger>
83
  </log4net>
84 17
  <runtime>
85 18
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
86 19
        <!--<probing privatePath="DLL;DLL\Teigha"/>-->
......
110 43
      </dependentAssembly>
111 44
      <dependentAssembly>
112 45
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
113
        <bindingRedirect oldVersion="0.0.0.0-10.0.0.0" newVersion="10.0.0.0" />
46
        <bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
114 47
      </dependentAssembly>
115 48
      <dependentAssembly>
116 49
        <assemblyIdentity name="EntityFramework" publicKeyToken="b77a5c561934e089" culture="neutral" />
......
218 151
      </setting>
219 152
    </KCOM.Properties.Settings>
220 153
  </applicationSettings>
221
  <entityFramework>
154
  <!--<entityFramework>
222 155
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework">
223 156
      <parameters>
224 157
        <parameter value="Data Source=.\SQLEXPRESS; Integrated Security=True; MultipleActiveResultSets=True" />
......
228 161
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
229 162
      <provider invariantName="System.Data.SQLite.EF6" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6" />
230 163
    </providers>
231
  </entityFramework>
164
  </entityFramework>-->
232 165
  
233
<system.data>
234
    <DbProviderFactories>
235
      <remove invariant="System.Data.SQLite.EF6" />
236
      <add name="SQLite Data Provider (Entity Framework 6)" invariant="System.Data.SQLite.EF6" description=".NET Framework Data Provider for SQLite (Entity Framework 6)" type="System.Data.SQLite.EF6.SQLiteProviderFactory, System.Data.SQLite.EF6" />
237
    <remove invariant="System.Data.SQLite" /><add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".NET Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" /></DbProviderFactories>
238
  </system.data></configuration>
166
</configuration>
KCOM/packages.config
4 4
  <package id="EntityFramework" version="6.2.0" targetFramework="net45" />
5 5
  <package id="ICSharpCode.SharpZipLib.dll" version="0.85.4.369" targetFramework="net40" />
6 6
  <package id="log4net" version="2.0.8" targetFramework="net45" />
7
  <package id="Microsoft.Bcl" version="1.1.10" targetFramework="net40" requireReinstallation="true" />
8
  <package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="net40" />
9
  <package id="Microsoft.Net.Http" version="2.2.29" targetFramework="net40" requireReinstallation="true" />
10 7
  <package id="Microsoft.Office.Interop.Excel" version="15.0.4795.1000" targetFramework="net40" />
11
  <package id="Newtonsoft.Json" version="10.0.3" targetFramework="net40" requireReinstallation="true" />
8
  <package id="Newtonsoft.Json" version="12.0.3" targetFramework="net461" />
12 9
  <package id="Obfuscar" version="2.2.23" targetFramework="net45" developmentDependency="true" />
13
  <package id="RestSharp" version="105.2.3" targetFramework="net40" requireReinstallation="true" />
14 10
  <package id="Svg2Xaml" version="0.3.0.5" targetFramework="net45" />
15
  <package id="System.Data.SQLite" version="1.0.110.0" targetFramework="net45" />
16
  <package id="System.Data.SQLite.Core" version="1.0.110.0" targetFramework="net45" />
17
  <package id="System.Data.SQLite.EF6" version="1.0.110.0" targetFramework="net45" />
18
  <package id="System.Data.SQLite.Linq" version="1.0.110.0" targetFramework="net45" />
19 11
  <package id="System.Windows.Interactivity.WPF" version="2.0.20525" targetFramework="net40" />
20 12
  <package id="ToggleSwitch" version="1.1.2" targetFramework="net40" />
21 13
</packages>
MarkupToPDF/MarkupToPDF.csproj
214 214
    </Reference>
215 215
    <Reference Include="PresentationCore" />
216 216
    <Reference Include="PresentationFramework" />
217
    <Reference Include="Rxx, Version=1.3.4451.33754, Culture=neutral, PublicKeyToken=09aedbbcd2ef4748, processorArchitecture=MSIL">
218
      <HintPath>..\packages\Rxx.1.3.4451.33754\lib\net40\Rxx.dll</HintPath>
219
    </Reference>
220 217
    <Reference Include="Svg2Xaml, Version=0.3.0.5, Culture=neutral, processorArchitecture=MSIL">
221 218
      <HintPath>..\packages\Svg2Xaml.0.3.0.5\lib\net40\Svg2Xaml.dll</HintPath>
222 219
    </Reference>
......
225 222
    <Reference Include="System.Core" />
226 223
    <Reference Include="System.Data.Entity" />
227 224
    <Reference Include="System.Drawing" />
228
    <Reference Include="System.Reactive, Version=1.0.10621.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
229
      <HintPath>..\packages\Rx-Main.1.0.11226\lib\Net4\System.Reactive.dll</HintPath>
230
    </Reference>
231 225
    <Reference Include="System.Runtime.Serialization" />
232 226
    <Reference Include="System.Security" />
233 227
    <Reference Include="System.ServiceModel" />
MarkupToPDF/packages.config
3 3
  <package id="EntityFramework" version="5.0.0" targetFramework="net45" />
4 4
  <package id="EntityFramework.ko" version="5.0.0" targetFramework="net45" />
5 5
  <package id="iTextSharp" version="5.5.12" targetFramework="net40" />
6
  <package id="Rx-Main" version="1.0.11226" targetFramework="net40" />
7
  <package id="Rxx" version="1.3.4451.33754" targetFramework="net40" />
8 6
  <package id="Svg2Xaml" version="0.3.0.5" targetFramework="net40" />
9 7
</packages>
packages/Microsoft.Bcl.1.1.10/License-Stable.rtf
1
{\rtf1\ansi\ansicpg1252\deff0\nouicompat\deflang1033{\fonttbl{\f0\fswiss\fprq2\fcharset0 Tahoma;}{\f1\froman\fprq2\fcharset0 Times New Roman;}{\f2\fswiss\fprq2\fcharset0 Calibri;}{\f3\fnil\fcharset0 Calibri;}{\f4\fnil\fcharset2 Symbol;}}
2
{\colortbl ;\red31\green73\blue125;\red0\green0\blue255;}
3
{\*\listtable 
4
{\list\listhybrid
5
{\listlevel\levelnfc0\leveljc0\levelstartat1{\leveltext\'02\'00.;}{\levelnumbers\'01;}\jclisttab\tx360}
6
{\listlevel\levelnfc4\leveljc0\levelstartat1{\leveltext\'02\'01.;}{\levelnumbers\'01;}\jclisttab\tx363}
7
{\listlevel\levelnfc2\leveljc0\levelstartat1{\leveltext\'02\'02.;}{\levelnumbers\'01;}\jclisttab\tx720}\listid1 }
8
{\list\listhybrid
9
{\listlevel\levelnfc0\leveljc0\levelstartat1{\leveltext\'02\'00.;}{\levelnumbers\'01;}\jclisttab\tx363}
10
{\listlevel\levelnfc4\leveljc0\levelstartat1{\leveltext\'02\'01.;}{\levelnumbers\'01;}\jclisttab\tx363}\listid2 }}
11
{\*\listoverridetable{\listoverride\listid1\listoverridecount0\ls1}{\listoverride\listid2\listoverridecount0\ls2}}
12
{\stylesheet{ Normal;}{\s1 heading 1;}{\s2 heading 2;}{\s3 heading 3;}}
13
{\*\generator Riched20 6.2.9200}\viewkind4\uc1 
14
\pard\nowidctlpar\sb120\sa120\b\f0\fs24 MICROSOFT SOFTWARE LICENSE TERMS\par
15

  
16
\pard\brdrb\brdrs\brdrw10\brsp20 \nowidctlpar\sb120\sa120 MICROSOFT .NET LIBRARY \par
17

  
18
\pard\nowidctlpar\sb120\sa120\fs19 These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\par
19

  
20
\pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent363{\pntxtb\'B7}}\nowidctlpar\fi-363\li720\sb120\sa120\b0 updates,\par
21
{\pntext\f4\'B7\tab}supplements,\par
22
{\pntext\f4\'B7\tab}Internet-based services, and\par
23
{\pntext\f4\'B7\tab}support services\par
24

  
25
\pard\nowidctlpar\sb120\sa120\b for this software, unless other terms accompany those items. If so, those terms apply.\par
26
BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\par
27

  
28
\pard\brdrt\brdrs\brdrw10\brsp20 \nowidctlpar\sb120\sa120 IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE PERPETUAL RIGHTS BELOW.\par
29

  
30
\pard 
31
{\listtext\f0 1.\tab}\jclisttab\tx360\ls1\nowidctlpar\s1\fi-357\li357\sb120\sa120 INSTALLATION AND USE RIGHTS. \par
32

  
33
\pard 
34
{\listtext\f0 a.\tab}\jclisttab\tx363\ls1\ilvl1\nowidctlpar\s2\fi-363\li720\sb120\sa120 Installation and Use.\b0\fs20  You may install and use any number of copies of the software to design, develop and test your programs.\par
35
{\listtext\f0 b.\tab}\b\fs19 Third Party Programs.\b0\fs20  The software may include third party programs that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party program are included for your information only.\b\fs19\par
36

  
37
\pard 
38
{\listtext\f0 2.\tab}\jclisttab\tx360\ls1\nowidctlpar\s1\fi-357\li357\sb120\sa120\fs20 ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\par
39

  
40
\pard 
41
{\listtext\f0 a.\tab}\jclisttab\tx363\ls1\ilvl1\nowidctlpar\s2\fi-363\li720\sb120\sa120 DISTRIBUTABLE CODE.\~ \b0 The software is comprised of Distributable Code. \f1\ldblquote\f0 Distributable Code\f1\rdblquote\f0  is code that you are permitted to distribute in programs you develop if you comply with the terms below.\b\par
42

  
43
\pard 
44
{\listtext\f0 i.\tab}\jclisttab\tx720\ls1\ilvl2\nowidctlpar\s3\fi-357\li1077\sb120\sa120\tx1077 Right to Use and Distribute. \par
45

  
46
\pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent360{\pntxtb\'B7}}\nowidctlpar\fi-357\li1434\sb120\sa120\b0 You may copy and distribute the object code form of the software.\par
47
{\pntext\f4\'B7\tab}Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\par
48

  
49
\pard\nowidctlpar\s3\fi-357\li1077\sb120\sa120\tx1077\b ii.\tab Distribution Requirements.\b0  \b For any Distributable Code you distribute, you must\par
50

  
51
\pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent360{\pntxtb\'B7}}\nowidctlpar\fi-357\li1434\sb120\sa120\b0 add significant primary functionality to it in your programs;\par
52
{\pntext\f4\'B7\tab}require distributors and external end users to agree to terms that protect it at least as much as this agreement;\par
53
{\pntext\f4\'B7\tab}display your valid copyright notice on your programs; and\par
54
{\pntext\f4\'B7\tab}indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\rquote  fees, related to the distribution or use of your programs.\par
55

  
56
\pard\nowidctlpar\s3\fi-357\li1077\sb120\sa120\tx1077\b iii.\tab Distribution Restrictions.\b0  \b You may not\par
57

  
58
\pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent360{\pntxtb\'B7}}\nowidctlpar\fi-357\li1434\sb120\sa120\b0 alter any copyright, trademark or patent notice in the Distributable Code;\par
59
{\pntext\f4\'B7\tab}use Microsoft\rquote s trademarks in your programs\rquote  names or in a way that suggests your programs come from or are endorsed by Microsoft;\par
60
{\pntext\f4\'B7\tab}include Distributable Code in malicious, deceptive or unlawful programs; or\par
61
{\pntext\f4\'B7\tab}modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\par
62

  
63
\pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent360{\pntxtb\'B7}}\nowidctlpar\fi-358\li1792\sb120\sa120 the code be disclosed or distributed in source code form; or\cf1\f2\par
64
{\pntext\f4\'B7\tab}\cf0\f0 others have the right to modify it.\cf1\f2\par
65

  
66
\pard\nowidctlpar\s1\fi-357\li357\sb120\sa120\cf0\b\f0 3.\tab\fs19 SCOPE OF LICENSE. \b0 The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\par
67

  
68
\pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent363{\pntxtb\'B7}}\nowidctlpar\fi-363\li720\sb120\sa120 work around any technical limitations in the software;\par
69
{\pntext\f4\'B7\tab}reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\par
70
{\pntext\f4\'B7\tab}publish the software for others to copy;\par
71
{\pntext\f4\'B7\tab}rent, lease or lend the software;\par
72
{\pntext\f4\'B7\tab}transfer the software or this agreement to any third party; or\par
73
{\pntext\f4\'B7\tab}use the software for commercial software hosting services.\par
74

  
75
\pard\nowidctlpar\s1\fi-357\li357\sb120\sa120\b\fs20 4.\tab\fs19 BACKUP COPY. \b0 You may make one backup copy of the software. You may use it only to reinstall the software.\par
76
\b\fs20 5.\tab\fs19 DOCUMENTATION. \b0 Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\par
77
\b\fs20 6.\tab\fs19 EXPORT RESTRICTIONS. \b0 The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see {\cf2\ul\fs20{\field{\*\fldinst{HYPERLINK www.microsoft.com/exporting }}{\fldrslt{www.microsoft.com/exporting}}}}\f0\fs19 .\cf2\ul\fs20\par
78
\cf0\ulnone\b 7.\tab\fs19 SUPPORT SERVICES. \b0 Because this software is \ldblquote as is,\rdblquote  we may not provide support services for it.\par
79
\b\fs20 8.\tab\fs19 ENTIRE AGREEMENT. \b0 This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\par
80
\b\fs20 9.\tab\fs19 APPLICABLE LAW.\par
81

  
82
\pard 
83
{\listtext\f0 a.\tab}\jclisttab\tx363\ls2\ilvl1\nowidctlpar\s2\fi-363\li720\sb120\sa120 United States. \b0 If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\par
84
{\listtext\f0 b.\tab}\b Outside the United States. If you acquired the software in any other country, the laws of that country apply.\par
85

  
86
\pard\nowidctlpar\s1\fi-357\li357\sb120\sa120\fs20 10.\tab\fs19 LEGAL EFFECT. \b0 This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\par
87
\b\fs20 11.\tab\fs19 DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \ldblquote AS-IS.\rdblquote  YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS OR STATUTORY GUARANTEES UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\par
88

  
89
\pard\nowidctlpar\li357\sb120\sa120 FOR AUSTRALIA \endash  YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS.\par
90

  
91
\pard\nowidctlpar\s1\fi-357\li357\sb120\sa120\fs20 12.\tab\fs19 LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\par
92

  
93
\pard\nowidctlpar\li357\sb120\sa120\b0 This limitation applies to\par
94

  
95
\pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent363{\pntxtb\'B7}}\nowidctlpar\fi-363\li720\sb120\sa120 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\par
96
{\pntext\f4\'B7\tab}claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\par
97

  
98
\pard\nowidctlpar\sb120\sa120 It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\par
99
\lang9 Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.\par
100
Remarque : Ce logiciel \'e9tant distribu\'e9 au Qu\'e9bec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\'e7ais.\par
101

  
102
\pard\nowidctlpar\s1\sb120\sa120\b\lang1033 EXON\'c9RATION DE GARANTIE. \b0 Le logiciel vis\'e9 par une licence est offert \'ab tel quel \'bb. Toute utilisation de ce logiciel est \'e0 votre seule risque et p\'e9ril. Microsoft n\rquote accorde aucune autre garantie expresse. Vous pouvez b\'e9n\'e9ficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualit\'e9 marchande, d\rquote ad\'e9quation \'e0 un usage particulier et d\rquote absence de contrefa\'e7on sont exclues.\par
103
\b LIMITATION DES DOMMAGES-INT\'c9R\'caTS ET EXCLUSION DE RESPONSABILIT\'c9 POUR LES DOMMAGES. \b0 Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \'e0 hauteur de 5,00 $ US. Vous ne pouvez pr\'e9tendre \'e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\'e9ciaux, indirects ou accessoires et pertes de b\'e9n\'e9fices.\par
104

  
105
\pard\nowidctlpar\sb120\sa120\lang9 Cette limitation concerne :\par
106

  
107
\pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent360{\pntxtb\'B7}}\nowidctlpar\li720\sb120\sa120 tout ce qui est reli\'e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et\par
108
{\pntext\f4\'B7\tab}les r\'e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\'e9 stricte, de n\'e9gligence ou d\rquote une autre faute dans la limite autoris\'e9e par la loi en vigueur.\par
109

  
110
\pard\nowidctlpar\sb120\sa120 Elle s\rquote applique \'e9galement, m\'eame si Microsoft connaissait ou devrait conna\'eetre l\rquote\'e9ventualit\'e9 d\rquote un tel dommage. Si votre pays n\rquote autorise pas l\rquote exclusion ou la limitation de responsabilit\'e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l\rquote exclusion ci-dessus ne s\rquote appliquera pas \'e0 votre \'e9gard.\par
111

  
112
\pard\nowidctlpar\s1\sb120\sa120\b\lang1033 EFFET JURIDIQUE. \b0 Le pr\'e9sent contrat d\'e9crit certains droits juridiques. Vous pourriez avoir d\rquote autres droits pr\'e9vus par les lois de votre pays. Le pr\'e9sent contrat ne modifie pas les droits que vous conf\'e8rent les lois de votre pays si celles-ci ne le permettent pas.\par
113

  
114
\pard\nowidctlpar\sb120\sa120\b\fs20\lang1036\par
115

  
116
\pard\sa200\sl276\slmult1\b0\f3\fs22\lang9\par
117
}
118

packages/Microsoft.Bcl.1.1.10/lib/net40/System.IO.xml
1
<?xml version="1.0"?>
2
<doc>
3
    <assembly>
4
        <name>System.IO</name>
5
    </assembly>
6
    <members>
7
    </members>
8
</doc>
packages/Microsoft.Bcl.1.1.10/lib/net40/System.Runtime.xml
1
<?xml version="1.0"?>
2
<doc>
3
    <assembly>
4
        <name>System.Runtime</name>
5
    </assembly>
6
    <members>
7
        <member name="T:System.IProgress`1">
8
            <summary>Defines a provider for progress updates.</summary>
9
            <typeparam name="T">The type of progress update value.</typeparam>
10
        </member>
11
        <member name="M:System.IProgress`1.Report(`0)">
12
            <summary>Reports a progress update.</summary>
13
            <param name="value">The value of the updated progress.</param>
14
        </member>
15
        <member name="T:System.Runtime.CompilerServices.AsyncStateMachineAttribute">
16
            <summary>Identities the async state machine type for this method.</summary>
17
        </member>
18
        <member name="T:System.Runtime.CompilerServices.StateMachineAttribute">
19
            <summary>Identities the state machine type for this method.</summary>
20
        </member>
21
        <member name="M:System.Runtime.CompilerServices.StateMachineAttribute.#ctor(System.Type)">
22
            <summary>Initializes the attribute.</summary>
23
            <param name="stateMachineType">The type that implements the state machine.</param>
24
        </member>
25
        <member name="P:System.Runtime.CompilerServices.StateMachineAttribute.StateMachineType">
26
            <summary>Gets the type that implements the state machine.</summary>
27
        </member>
28
        <member name="M:System.Runtime.CompilerServices.AsyncStateMachineAttribute.#ctor(System.Type)">
29
            <summary>Initializes the attribute.</summary>
30
            <param name="stateMachineType">The type that implements the state machine.</param>
31
        </member>
32
        <member name="T:System.Runtime.CompilerServices.CallerMemberNameAttribute">
33
            <summary>
34
            Allows you to obtain the method or property name of the caller to the method.
35
            </summary>
36
        </member>
37
        <member name="T:System.Runtime.CompilerServices.CallerLineNumberAttribute">
38
            <summary>
39
            Allows you to obtain the line number in the source file at which the method is called.
40
            </summary>
41
        </member>
42
        <member name="T:System.Runtime.CompilerServices.CallerFilePathAttribute">
43
            <summary>
44
            Allows you to obtain the full path of the source file that contains the caller.
45
            This is the file path at the time of compile.
46
            </summary>
47
        </member>
48
        <member name="T:System.Runtime.CompilerServices.IteratorStateMachineAttribute">
49
            <summary>Identities the iterator state machine type for this method.</summary>
50
        </member>
51
        <member name="M:System.Runtime.CompilerServices.IteratorStateMachineAttribute.#ctor(System.Type)">
52
            <summary>Initializes the attribute.</summary>
53
            <param name="stateMachineType">The type that implements the state machine.</param>
54
        </member>
55
    </members>
56
</doc>
packages/Microsoft.Bcl.1.1.10/lib/net40/System.Threading.Tasks.xml
1
<?xml version="1.0"?>
2
<doc>
3
    <assembly>
4
        <name>System.Threading.Tasks</name>
5
    </assembly>
6
    <members>
7
        <member name="T:System.Runtime.CompilerServices.AsyncMethodBuilderCore">
8
            <summary>Holds state related to the builder's IAsyncStateMachine.</summary>
9
            <remarks>This is a mutable struct.  Be very delicate with it.</remarks>
10
        </member>
11
        <member name="F:System.Runtime.CompilerServices.AsyncMethodBuilderCore.m_stateMachine">
12
            <summary>A reference to the heap-allocated state machine object associated with this builder.</summary>
13
        </member>
14
        <member name="M:System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start``1(``0@)">
15
            <summary>Initiates the builder's execution with the associated state machine.</summary>
16
            <typeparam name="TStateMachine">Specifies the type of the state machine.</typeparam>
17
            <param name="stateMachine">The state machine instance, passed by reference.</param>
18
            <exception cref="T:System.ArgumentNullException">The <paramref name="stateMachine"/> argument is null (Nothing in Visual Basic).</exception>
19
        </member>
20
        <member name="M:System.Runtime.CompilerServices.AsyncMethodBuilderCore.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)">
21
            <summary>Associates the builder with the state machine it represents.</summary>
22
            <param name="stateMachine">The heap-allocated state machine object.</param>
23
            <exception cref="T:System.ArgumentNullException">The <paramref name="stateMachine"/> argument was null (Nothing in Visual Basic).</exception>
24
            <exception cref="T:System.InvalidOperationException">The builder is incorrectly initialized.</exception>
25
        </member>
26
        <member name="M:System.Runtime.CompilerServices.AsyncMethodBuilderCore.GetCompletionAction``2(``0@,``1@)">
27
            <summary>
28
            Gets the Action to use with an awaiter's OnCompleted or UnsafeOnCompleted method.
29
            On first invocation, the supplied state machine will be boxed.
30
            </summary>
31
            <typeparam name="TMethodBuilder">Specifies the type of the method builder used.</typeparam>
32
            <typeparam name="TStateMachine">Specifies the type of the state machine used.</typeparam>
33
            <param name="builder">The builder.</param>
34
            <param name="stateMachine">The state machine.</param>
35
            <returns>An Action to provide to the awaiter.</returns>
36
        </member>
37
        <member name="T:System.Runtime.CompilerServices.AsyncMethodBuilderCore.MoveNextRunner">
38
            <summary>Provides the ability to invoke a state machine's MoveNext method under a supplied ExecutionContext.</summary>
39
        </member>
40
        <member name="F:System.Runtime.CompilerServices.AsyncMethodBuilderCore.MoveNextRunner.m_context">
41
            <summary>The context with which to run MoveNext.</summary>
42
        </member>
43
        <member name="F:System.Runtime.CompilerServices.AsyncMethodBuilderCore.MoveNextRunner.m_stateMachine">
44
            <summary>The state machine whose MoveNext method should be invoked.</summary>
45
        </member>
46
        <member name="M:System.Runtime.CompilerServices.AsyncMethodBuilderCore.MoveNextRunner.#ctor(System.ExecutionContextLightup)">
47
            <summary>Initializes the runner.</summary>
48
            <param name="context">The context with which to run MoveNext.</param>
49
        </member>
50
        <member name="M:System.Runtime.CompilerServices.AsyncMethodBuilderCore.MoveNextRunner.Run">
51
            <summary>Invokes MoveNext under the provided context.</summary>
52
        </member>
53
        <member name="F:System.Runtime.CompilerServices.AsyncMethodBuilderCore.MoveNextRunner.s_invokeMoveNext">
54
            <summary>Cached delegate used with ExecutionContext.Run.</summary>
55
        </member>
56
        <member name="M:System.Runtime.CompilerServices.AsyncMethodBuilderCore.MoveNextRunner.InvokeMoveNext(System.Object)">
57
            <summary>Invokes the MoveNext method on the supplied IAsyncStateMachine.</summary>
58
            <param name="stateMachine">The IAsyncStateMachine machine instance.</param>
59
        </member>
60
        <member name="T:System.Runtime.CompilerServices.AsyncMethodTaskCache`1">
61
            <summary>Provides a base class used to cache tasks of a specific return type.</summary>
62
            <typeparam name="TResult">Specifies the type of results the cached tasks return.</typeparam>
63
        </member>
64
        <member name="F:System.Runtime.CompilerServices.AsyncMethodTaskCache`1.Singleton">
65
            <summary>
66
            A singleton cache for this result type.
67
            This may be null if there are no cached tasks for this TResult.
68
            </summary>
69
        </member>
70
        <member name="M:System.Runtime.CompilerServices.AsyncMethodTaskCache`1.CreateCompleted(`0)">
71
            <summary>Creates a non-disposable task.</summary>
72
            <param name="result">The result for the task.</param>
73
            <returns>The cacheable task.</returns>
74
        </member>
75
        <member name="M:System.Runtime.CompilerServices.AsyncMethodTaskCache`1.CreateCache">
76
            <summary>Creates a cache.</summary>
77
            <returns>A task cache for this result type.</returns>
78
        </member>
79
        <member name="M:System.Runtime.CompilerServices.AsyncMethodTaskCache`1.FromResult(`0)">
80
            <summary>Gets a cached task if one exists.</summary>
81
            <param name="result">The result for which we want a cached task.</param>
82
            <returns>A cached task if one exists; otherwise, null.</returns>
83
        </member>
84
        <member name="T:System.Runtime.CompilerServices.AsyncMethodTaskCache`1.AsyncMethodBooleanTaskCache">
85
            <summary>Provides a cache for Boolean tasks.</summary>
86
        </member>
87
        <member name="F:System.Runtime.CompilerServices.AsyncMethodTaskCache`1.AsyncMethodBooleanTaskCache.m_true">
88
            <summary>A true task.</summary>
89
        </member>
90
        <member name="F:System.Runtime.CompilerServices.AsyncMethodTaskCache`1.AsyncMethodBooleanTaskCache.m_false">
91
            <summary>A false task.</summary>
92
        </member>
93
        <member name="M:System.Runtime.CompilerServices.AsyncMethodTaskCache`1.AsyncMethodBooleanTaskCache.FromResult(System.Boolean)">
94
            <summary>Gets a cached task for the Boolean result.</summary>
95
            <param name="result">true or false</param>
96
            <returns>A cached task for the Boolean result.</returns>
97
        </member>
98
        <member name="T:System.Runtime.CompilerServices.AsyncMethodTaskCache`1.AsyncMethodInt32TaskCache">
99
            <summary>Provides a cache for zero Int32 tasks.</summary>
100
        </member>
101
        <member name="F:System.Runtime.CompilerServices.AsyncMethodTaskCache`1.AsyncMethodInt32TaskCache.INCLUSIVE_INT32_MIN">
102
            <summary>The minimum value, inclusive, for which we want a cached task.</summary>
103
        </member>
104
        <member name="F:System.Runtime.CompilerServices.AsyncMethodTaskCache`1.AsyncMethodInt32TaskCache.EXCLUSIVE_INT32_MAX">
105
            <summary>The maximum value, exclusive, for which we want a cached task.</summary>
106
        </member>
107
        <member name="F:System.Runtime.CompilerServices.AsyncMethodTaskCache`1.AsyncMethodInt32TaskCache.Int32Tasks">
108
            <summary>The cache of Task{Int32}.</summary>
109
        </member>
110
        <member name="M:System.Runtime.CompilerServices.AsyncMethodTaskCache`1.AsyncMethodInt32TaskCache.CreateInt32Tasks">
111
            <summary>Creates an array of cached tasks for the values in the range [INCLUSIVE_MIN,EXCLUSIVE_MAX).</summary>
112
        </member>
113
        <member name="M:System.Runtime.CompilerServices.AsyncMethodTaskCache`1.AsyncMethodInt32TaskCache.FromResult(System.Int32)">
114
            <summary>Gets a cached task for the zero Int32 result.</summary>
115
            <param name="result">The integer value</param>
116
            <returns>A cached task for the Int32 result or null if not cached.</returns>
117
        </member>
118
        <member name="M:System.Runtime.CompilerServices.AsyncServices.ThrowAsync(System.Exception,System.Threading.SynchronizationContext)">
119
            <summary>Throws the exception on the ThreadPool.</summary>
120
            <param name="exception">The exception to propagate.</param>
121
            <param name="targetContext">The target context on which to propagate the exception.  Null to use the ThreadPool.</param>
122
        </member>
123
        <member name="M:System.Runtime.CompilerServices.AsyncServices.PrepareExceptionForRethrow(System.Exception)">
124
            <summary>Copies the exception's stack trace so its stack trace isn't overwritten.</summary>
125
            <param name="exc">The exception to prepare.</param>
126
        </member>
127
        <member name="T:System.Runtime.CompilerServices.AsyncTaskMethodBuilder">
128
            <summary>
129
            Provides a builder for asynchronous methods that return <see cref="T:System.Threading.Tasks.Task"/>.
130
            This type is intended for compiler use only.
131
            </summary>
132
            <remarks>
133
            AsyncTaskMethodBuilder is a value type, and thus it is copied by value.
134
            Prior to being copied, one of its Task, SetResult, or SetException members must be accessed,
135
            or else the copies may end up building distinct Task instances.
136
            </remarks>
137
        </member>
138
        <member name="T:System.Runtime.CompilerServices.IAsyncMethodBuilder">
139
            <summary>Represents an asynchronous method builder.</summary>
140
        </member>
141
        <member name="F:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.s_cachedCompleted">
142
            <summary>A cached VoidTaskResult task used for builders that complete synchronously.</summary>
143
        </member>
144
        <member name="F:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.m_builder">
145
            <summary>The generic builder object to which this non-generic instance delegates.</summary>
146
        </member>
147
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Create">
148
            <summary>Initializes a new <see cref="T:System.Runtime.CompilerServices.AsyncTaskMethodBuilder"/>.</summary>
149
            <returns>The initialized <see cref="T:System.Runtime.CompilerServices.AsyncTaskMethodBuilder"/>.</returns>
150
        </member>
151
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Start``1(``0@)">
152
            <summary>Initiates the builder's execution with the associated state machine.</summary>
153
            <typeparam name="TStateMachine">Specifies the type of the state machine.</typeparam>
154
            <param name="stateMachine">The state machine instance, passed by reference.</param>
155
        </member>
156
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)">
157
            <summary>Associates the builder with the state machine it represents.</summary>
158
            <param name="stateMachine">The heap-allocated state machine object.</param>
159
            <exception cref="T:System.ArgumentNullException">The <paramref name="stateMachine"/> argument was null (Nothing in Visual Basic).</exception>
160
            <exception cref="T:System.InvalidOperationException">The builder is incorrectly initialized.</exception>
161
        </member>
162
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.System#Runtime#CompilerServices#IAsyncMethodBuilder#PreBoxInitialization">
163
            <summary>Perform any initialization necessary prior to lifting the builder to the heap.</summary>
164
        </member>
165
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.AwaitOnCompleted``2(``0@,``1@)">
166
            <summary>
167
            Schedules the specified state machine to be pushed forward when the specified awaiter completes.
168
            </summary>
169
            <typeparam name="TAwaiter">Specifies the type of the awaiter.</typeparam>
170
            <typeparam name="TStateMachine">Specifies the type of the state machine.</typeparam>
171
            <param name="awaiter">The awaiter.</param>
172
            <param name="stateMachine">The state machine.</param>
173
        </member>
174
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.AwaitUnsafeOnCompleted``2(``0@,``1@)">
175
            <summary>
176
            Schedules the specified state machine to be pushed forward when the specified awaiter completes.
177
            </summary>
178
            <typeparam name="TAwaiter">Specifies the type of the awaiter.</typeparam>
179
            <typeparam name="TStateMachine">Specifies the type of the state machine.</typeparam>
180
            <param name="awaiter">The awaiter.</param>
181
            <param name="stateMachine">The state machine.</param>
182
        </member>
183
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.SetResult">
184
            <summary>
185
            Completes the <see cref="T:System.Threading.Tasks.Task"/> in the 
186
            <see cref="T:System.Threading.Tasks.TaskStatus">RanToCompletion</see> state.
187
            </summary>
188
            <exception cref="T:System.InvalidOperationException">The builder is not initialized.</exception>
189
            <exception cref="T:System.InvalidOperationException">The task has already completed.</exception>
190
        </member>
191
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.SetException(System.Exception)">
192
            <summary>
193
            Completes the <see cref="T:System.Threading.Tasks.Task"/> in the 
194
            <see cref="T:System.Threading.Tasks.TaskStatus">Faulted</see> state with the specified exception.
195
            </summary>
196
            <param name="exception">The <see cref="T:System.Exception"/> to use to fault the task.</param>
197
            <exception cref="T:System.ArgumentNullException">The <paramref name="exception"/> argument is null (Nothing in Visual Basic).</exception>
198
            <exception cref="T:System.InvalidOperationException">The builder is not initialized.</exception>
199
            <exception cref="T:System.InvalidOperationException">The task has already completed.</exception>
200
        </member>
201
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.SetNotificationForWaitCompletion(System.Boolean)">
202
            <summary>
203
            Called by the debugger to request notification when the first wait operation
204
            (await, Wait, Result, etc.) on this builder's task completes.
205
            </summary>
206
            <param name="enabled">
207
            true to enable notification; false to disable a previously set notification.
208
            </param>
209
        </member>
210
        <member name="P:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Task">
211
            <summary>Gets the <see cref="T:System.Threading.Tasks.Task"/> for this builder.</summary>
212
            <returns>The <see cref="T:System.Threading.Tasks.Task"/> representing the builder's asynchronous operation.</returns>
213
            <exception cref="T:System.InvalidOperationException">The builder is not initialized.</exception>
214
        </member>
215
        <member name="P:System.Runtime.CompilerServices.AsyncTaskMethodBuilder.ObjectIdForDebugger">
216
            <summary>
217
            Gets an object that may be used to uniquely identify this builder to the debugger.
218
            </summary>
219
            <remarks>
220
            This property lazily instantiates the ID in a non-thread-safe manner.  
221
            It must only be used by the debugger, and only in a single-threaded manner
222
            when no other threads are in the middle of accessing this property or this.Task.
223
            </remarks>
224
        </member>
225
        <member name="T:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1">
226
            <summary>
227
            Provides a builder for asynchronous methods that return <see cref="T:System.Threading.Tasks.Task`1"/>.
228
            This type is intended for compiler use only.
229
            </summary>
230
            <remarks>
231
            AsyncTaskMethodBuilder{TResult} is a value type, and thus it is copied by value.
232
            Prior to being copied, one of its Task, SetResult, or SetException members must be accessed,
233
            or else the copies may end up building distinct Task instances.
234
            </remarks>
235
        </member>
236
        <member name="F:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.s_defaultResultTask">
237
            <summary>A cached task for default(TResult).</summary>
238
        </member>
239
        <member name="F:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.m_coreState">
240
            <summary>State related to the IAsyncStateMachine.</summary>
241
        </member>
242
        <member name="F:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.m_task">
243
            <summary>The lazily-initialized task.</summary>
244
            <remarks>Must be named m_task for debugger step-over to work correctly.</remarks>
245
        </member>
246
        <member name="F:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.m_taskCompletionSource">
247
            <summary>The lazily-initialized task completion source.</summary>
248
        </member>
249
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.#cctor">
250
            <summary>Temporary support for disabling crashing if tasks go unobserved.</summary>
251
        </member>
252
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.Create">
253
            <summary>Initializes a new <see cref="T:System.Runtime.CompilerServices.AsyncTaskMethodBuilder"/>.</summary>
254
            <returns>The initialized <see cref="T:System.Runtime.CompilerServices.AsyncTaskMethodBuilder"/>.</returns>
255
        </member>
256
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.Start``1(``0@)">
257
            <summary>Initiates the builder's execution with the associated state machine.</summary>
258
            <typeparam name="TStateMachine">Specifies the type of the state machine.</typeparam>
259
            <param name="stateMachine">The state machine instance, passed by reference.</param>
260
        </member>
261
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)">
262
            <summary>Associates the builder with the state machine it represents.</summary>
263
            <param name="stateMachine">The heap-allocated state machine object.</param>
264
            <exception cref="T:System.ArgumentNullException">The <paramref name="stateMachine"/> argument was null (Nothing in Visual Basic).</exception>
265
            <exception cref="T:System.InvalidOperationException">The builder is incorrectly initialized.</exception>
266
        </member>
267
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.System#Runtime#CompilerServices#IAsyncMethodBuilder#PreBoxInitialization">
268
            <summary>Perform any initialization necessary prior to lifting the builder to the heap.</summary>
269
        </member>
270
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.AwaitOnCompleted``2(``0@,``1@)">
271
            <summary>
272
            Schedules the specified state machine to be pushed forward when the specified awaiter completes.
273
            </summary>
274
            <typeparam name="TAwaiter">Specifies the type of the awaiter.</typeparam>
275
            <typeparam name="TStateMachine">Specifies the type of the state machine.</typeparam>
276
            <param name="awaiter">The awaiter.</param>
277
            <param name="stateMachine">The state machine.</param>
278
        </member>
279
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.AwaitUnsafeOnCompleted``2(``0@,``1@)">
280
            <summary>
281
            Schedules the specified state machine to be pushed forward when the specified awaiter completes.
282
            </summary>
283
            <typeparam name="TAwaiter">Specifies the type of the awaiter.</typeparam>
284
            <typeparam name="TStateMachine">Specifies the type of the state machine.</typeparam>
285
            <param name="awaiter">The awaiter.</param>
286
            <param name="stateMachine">The state machine.</param>
287
        </member>
288
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.SetResult(`0)">
289
            <summary>
290
            Completes the <see cref="T:System.Threading.Tasks.Task`1"/> in the 
291
            <see cref="T:System.Threading.Tasks.TaskStatus">RanToCompletion</see> state with the specified result.
292
            </summary>
293
            <param name="result">The result to use to complete the task.</param>
294
            <exception cref="T:System.InvalidOperationException">The task has already completed.</exception>
295
        </member>
296
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.SetResult(System.Threading.Tasks.TaskCompletionSource{`0})">
297
            <summary>
298
            Completes the builder by using either the supplied completed task, or by completing
299
            the builder's previously accessed task using default(TResult).
300
            </summary>
301
            <param name="completedTask">A task already completed with the value default(TResult).</param>
302
            <exception cref="T:System.InvalidOperationException">The task has already completed.</exception>
303
        </member>
304
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.SetException(System.Exception)">
305
            <summary>
306
            Completes the <see cref="T:System.Threading.Tasks.Task`1"/> in the 
307
            <see cref="T:System.Threading.Tasks.TaskStatus">Faulted</see> state with the specified exception.
308
            </summary>
309
            <param name="exception">The <see cref="T:System.Exception"/> to use to fault the task.</param>
310
            <exception cref="T:System.ArgumentNullException">The <paramref name="exception"/> argument is null (Nothing in Visual Basic).</exception>
311
            <exception cref="T:System.InvalidOperationException">The task has already completed.</exception>
312
        </member>
313
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.SetNotificationForWaitCompletion(System.Boolean)">
314
            <summary>
315
            Called by the debugger to request notification when the first wait operation
316
            (await, Wait, Result, etc.) on this builder's task completes.
317
            </summary>
318
            <param name="enabled">
319
            true to enable notification; false to disable a previously set notification.
320
            </param>
321
            <remarks>
322
            This should only be invoked from within an asynchronous method,
323
            and only by the debugger.
324
            </remarks>
325
        </member>
326
        <member name="M:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.GetTaskForResult(`0)">
327
            <summary>
328
            Gets a task for the specified result.  This will either
329
            be a cached or new task, never null.
330
            </summary>
331
            <param name="result">The result for which we need a task.</param>
332
            <returns>The completed task containing the result.</returns>
333
        </member>
334
        <member name="P:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.CompletionSource">
335
            <summary>Gets the lazily-initialized TaskCompletionSource.</summary>
336
        </member>
337
        <member name="P:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.Task">
338
            <summary>Gets the <see cref="T:System.Threading.Tasks.Task`1"/> for this builder.</summary>
339
            <returns>The <see cref="T:System.Threading.Tasks.Task`1"/> representing the builder's asynchronous operation.</returns>
340
        </member>
341
        <member name="P:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.ObjectIdForDebugger">
342
            <summary>
343
            Gets an object that may be used to uniquely identify this builder to the debugger.
344
            </summary>
345
            <remarks>
346
            This property lazily instantiates the ID in a non-thread-safe manner.  
347
            It must only be used by the debugger, and only in a single-threaded manner
348
            when no other threads are in the middle of accessing this property or this.Task.
349
            </remarks>
350
        </member>
351
        <member name="T:System.Runtime.CompilerServices.AsyncVoidMethodBuilder">
352
            <summary>
353
            Provides a builder for asynchronous methods that return void.
354
            This type is intended for compiler use only.
355
            </summary>
356
        </member>
357
        <member name="F:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.m_synchronizationContext">
358
            <summary>The synchronization context associated with this operation.</summary>
359
        </member>
360
        <member name="F:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.m_coreState">
361
            <summary>State related to the IAsyncStateMachine.</summary>
362
        </member>
363
        <member name="F:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.m_objectIdForDebugger">
364
            <summary>An object used by the debugger to uniquely identify this builder.  Lazily initialized.</summary>
365
        </member>
366
        <member name="M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.#cctor">
367
            <summary>Temporary support for disabling crashing if tasks go unobserved.</summary>
368
        </member>
369
        <member name="M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.PreventUnobservedTaskExceptions">
370
            <summary>Registers with UnobservedTaskException to suppress exception crashing.</summary>
371
        </member>
372
        <member name="F:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.s_preventUnobservedTaskExceptionsInvoked">
373
            <summary>Non-zero if PreventUnobservedTaskExceptions has already been invoked.</summary>
374
        </member>
375
        <member name="M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Create">
376
            <summary>Initializes a new <see cref="T:System.Runtime.CompilerServices.AsyncVoidMethodBuilder"/>.</summary>
377
            <returns>The initialized <see cref="T:System.Runtime.CompilerServices.AsyncVoidMethodBuilder"/>.</returns>
378
        </member>
379
        <member name="M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.#ctor(System.Threading.SynchronizationContext)">
380
            <summary>Initializes the <see cref="T:System.Runtime.CompilerServices.AsyncVoidMethodBuilder"/>.</summary>
381
            <param name="synchronizationContext">The synchronizationContext associated with this operation. This may be null.</param>
382
        </member>
383
        <member name="M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.Start``1(``0@)">
384
            <summary>Initiates the builder's execution with the associated state machine.</summary>
385
            <typeparam name="TStateMachine">Specifies the type of the state machine.</typeparam>
386
            <param name="stateMachine">The state machine instance, passed by reference.</param>
387
            <exception cref="T:System.ArgumentNullException">The <paramref name="stateMachine"/> argument was null (Nothing in Visual Basic).</exception>
388
        </member>
389
        <member name="M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)">
390
            <summary>Associates the builder with the state machine it represents.</summary>
391
            <param name="stateMachine">The heap-allocated state machine object.</param>
392
            <exception cref="T:System.ArgumentNullException">The <paramref name="stateMachine"/> argument was null (Nothing in Visual Basic).</exception>
393
            <exception cref="T:System.InvalidOperationException">The builder is incorrectly initialized.</exception>
394
        </member>
395
        <member name="M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.System#Runtime#CompilerServices#IAsyncMethodBuilder#PreBoxInitialization">
396
            <summary>Perform any initialization necessary prior to lifting the builder to the heap.</summary>
397
        </member>
398
        <member name="M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitOnCompleted``2(``0@,``1@)">
399
            <summary>
400
            Schedules the specified state machine to be pushed forward when the specified awaiter completes.
401
            </summary>
402
            <typeparam name="TAwaiter">Specifies the type of the awaiter.</typeparam>
403
            <typeparam name="TStateMachine">Specifies the type of the state machine.</typeparam>
404
            <param name="awaiter">The awaiter.</param>
405
            <param name="stateMachine">The state machine.</param>
406
        </member>
407
        <member name="M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.AwaitUnsafeOnCompleted``2(``0@,``1@)">
408
            <summary>
409
            Schedules the specified state machine to be pushed forward when the specified awaiter completes.
410
            </summary>
411
            <typeparam name="TAwaiter">Specifies the type of the awaiter.</typeparam>
412
            <typeparam name="TStateMachine">Specifies the type of the state machine.</typeparam>
413
            <param name="awaiter">The awaiter.</param>
414
            <param name="stateMachine">The state machine.</param>
415
        </member>
416
        <member name="M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.SetResult">
417
            <summary>Completes the method builder successfully.</summary>
418
        </member>
419
        <member name="M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.SetException(System.Exception)">
420
            <summary>Faults the method builder with an exception.</summary>
421
            <param name="exception">The exception that is the cause of this fault.</param>
422
            <exception cref="T:System.ArgumentNullException">The <paramref name="exception"/> argument is null (Nothing in Visual Basic).</exception>
423
            <exception cref="T:System.InvalidOperationException">The builder is not initialized.</exception>
424
        </member>
425
        <member name="M:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.NotifySynchronizationContextOfCompletion">
426
            <summary>Notifies the current synchronization context that the operation completed.</summary>
427
        </member>
428
        <member name="P:System.Runtime.CompilerServices.AsyncVoidMethodBuilder.ObjectIdForDebugger">
429
            <summary>
430
            Gets an object that may be used to uniquely identify this builder to the debugger.
431
            </summary>
432
            <remarks>
433
            This property lazily instantiates the ID in a non-thread-safe manner.  
434
            It must only be used by the debugger and only in a single-threaded manner.
435
            </remarks>
436
        </member>
437
        <member name="T:System.Runtime.CompilerServices.IAsyncStateMachine">
438
            <summary>
439
            Represents state machines generated for asynchronous methods.
440
            This type is intended for compiler use only.
441
            </summary>
442
        </member>
443
        <member name="M:System.Runtime.CompilerServices.IAsyncStateMachine.MoveNext">
444
            <summary>Moves the state machine to its next state.</summary>
445
        </member>
446
        <member name="M:System.Runtime.CompilerServices.IAsyncStateMachine.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)">
447
            <summary>Configures the state machine with a heap-allocated replica.</summary>
448
            <param name="stateMachine">The heap-allocated replica.</param>
449
        </member>
450
        <member name="T:System.Runtime.CompilerServices.ICriticalNotifyCompletion">
451
            <summary>
452
            Represents an awaiter used to schedule continuations when an await operation completes.
453
            </summary>
454
        </member>
455
        <member name="T:System.Runtime.CompilerServices.INotifyCompletion">
456
            <summary>
457
            Represents an operation that will schedule continuations when the operation completes.
458
            </summary>
459
        </member>
460
        <member name="M:System.Runtime.CompilerServices.INotifyCompletion.OnCompleted(System.Action)">
461
            <summary>Schedules the continuation action to be invoked when the instance completes.</summary>
462
            <param name="continuation">The action to invoke when the operation completes.</param>
463
            <exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
464
        </member>
465
        <member name="M:System.Runtime.CompilerServices.ICriticalNotifyCompletion.UnsafeOnCompleted(System.Action)">
466
            <summary>Schedules the continuation action to be invoked when the instance completes.</summary>
467
            <param name="continuation">The action to invoke when the operation completes.</param>
468
            <exception cref="T:System.ArgumentNullException">The <paramref name="continuation"/> argument is null (Nothing in Visual Basic).</exception>
469
            <remarks>Unlike OnCompleted, UnsafeOnCompleted need not propagate ExecutionContext information.</remarks>
470
        </member>
471
        <member name="T:System.Runtime.CompilerServices.VoidTaskResult">
472
            <summary>Used with Task(of void)</summary>
473
        </member>
474
    </members>
475
</doc>
packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp71+wpa81/System.IO.xml
1
<?xml version="1.0"?>
2
<doc>
3
    <assembly>
4
        <name>System.IO</name>
5
    </assembly>
6
    <members>
7
        <member name="T:System.Strings">
8
            <summary>
9
              A strongly-typed resource class, for looking up localized strings, etc.
10
            </summary>
11
        </member>
12
        <member name="P:System.Strings.ResourceManager">
13
            <summary>
14
              Returns the cached ResourceManager instance used by this class.
15
            </summary>
16
        </member>
17
        <member name="P:System.Strings.Culture">
18
            <summary>
19
              Overrides the current thread's CurrentUICulture property for all
20
              resource lookups using this strongly typed resource class.
21
            </summary>
22
        </member>
23
        <member name="P:System.Strings.GenericInvalidData">
24
            <summary>
25
              Looks up a localized string similar to Found invalid data while decoding..
26
            </summary>
27
        </member>
28
        <member name="T:System.IO.InvalidDataException">
29
            <summary>
30
            The exception that is thrown when a data stream is in an invalid format.
31
            </summary>
32
        </member>
33
        <member name="M:System.IO.InvalidDataException.#ctor">
34
            <summary>
35
            Initializes a new instance of the <see cref="T:System.IO.InvalidDataException" /> class.
... 이 차이점은 표시할 수 있는 최대 줄수를 초과해서 이 차이점은 잘렸습니다.

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)