##// END OF EJS Templates
Fixed promise rejection when there is not specified error handler in the reaction....
cin -
r295:28af686e24f7 default
parent child
Show More
@@ -1,29 +1,28
1 <Project Sdk="Microsoft.NET.Sdk">
1 <Project Sdk="Microsoft.NET.Sdk">
2 <PropertyGroup Condition="'$(OSTYPE)'=='linux'">
2 <PropertyGroup>
3 <TargetFrameworks>netcoreapp2.0;net46</TargetFrameworks>
3 <TargetFramework>net5.0</TargetFramework>
4 <FrameworkPathOverride Condition="'$(TargetFramework)'=='net46'">/usr/lib/mono/4.5/</FrameworkPathOverride>
4
5 </PropertyGroup>
5 <IsPackable>false</IsPackable>
6
6 </PropertyGroup>
7 <PropertyGroup Condition="'$(OSTYPE)'=='windows'">
8 <TargetFrameworks>netcoreapp2.0;net46</TargetFrameworks>
9 </PropertyGroup>
10
11 <PropertyGroup>
12 <IsPackable>false</IsPackable>
13 </PropertyGroup>
14
7
15 <ItemGroup>
8 <ItemGroup>
16 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.6.0-preview-20180109-01" />
9 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
10 <PackageReference Include="xunit" Version="2.4.1" />
11 <PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
12 <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
13 <PrivateAssets>all</PrivateAssets>
14 </PackageReference>
15 <PackageReference Include="coverlet.collector" Version="1.3.0">
16 <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
17 <PrivateAssets>all</PrivateAssets>
18 </PackageReference>
17 <PackageReference Include="System.Reactive" Version="4.0.0" />
19 <PackageReference Include="System.Reactive" Version="4.0.0" />
18 <PackageReference Include="xunit" Version="2.3.1" />
19 <PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
20 <ProjectReference Include="../Implab/Implab.csproj"/>
20 <ProjectReference Include="../Implab/Implab.csproj"/>
21 <ProjectReference Include="../Implab.ServiceHost/Implab.ServiceHost.csproj"/>
21 <ProjectReference Include="../Implab.ServiceHost/Implab.ServiceHost.csproj"/>
22 <DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
23 </ItemGroup>
22 </ItemGroup>
24
23
25 <ItemGroup>
24 <ItemGroup>
26 <None Include="data/**/*.*" CopyToOutputDirectory="PreserveNewest" />
25 <None Include="data/**/*.*" CopyToOutputDirectory="PreserveNewest" />
27 </ItemGroup>
26 </ItemGroup>
28
27
29 </Project>
28 </Project> No newline at end of file
@@ -6,11 +6,11
6 <Description>The configurable application host.
6 <Description>The configurable application host.
7 Provides simple and flexible Xml configuration for UnityContainer.
7 Provides simple and flexible Xml configuration for UnityContainer.
8 </Description>
8 </Description>
9 <Copyright>2012-2018 Sergey Smirnov</Copyright>
9 <Copyright>2012-2021 Sergey Smirnov</Copyright>
10 <Version>1.0.3</Version>
10 <Version>1.0.4</Version>
11 <PackageLicenseUrl>https://bitbucket.org/wozard/implabnet/src/v3/Implab/license.txt</PackageLicenseUrl>
11 <PackageLicenseUrl>https://code.implab.org/implab/ImplabNet/files/default/Implab/license.txt</PackageLicenseUrl>
12 <PackageProjectUrl>https://bitbucket.org/wozard/implabnet</PackageProjectUrl>
12 <PackageProjectUrl>https://code.implab.org/implab/ImplabNet/</PackageProjectUrl>
13 <RepositoryUrl>https://bitbucket.org/wozard/implabnet</RepositoryUrl>
13 <RepositoryUrl>https://code.implab.org/implab/ImplabNet/</RepositoryUrl>
14 <RepositoryType>mercurial</RepositoryType>
14 <RepositoryType>mercurial</RepositoryType>
15 <PackageTags>Implab;Xml configuration;IoC;Unity container</PackageTags>
15 <PackageTags>Implab;Xml configuration;IoC;Unity container</PackageTags>
16 </PropertyGroup>
16 </PropertyGroup>
@@ -1,7 +1,6
1 using System;
1 using System;
2 using System.Xml.Serialization;
2 using System.Xml.Serialization;
3 using Unity.Lifetime;
3 using Unity.Lifetime;
4 using Unity.Registration;
5
4
6 namespace Implab.ServiceHost.Unity
5 namespace Implab.ServiceHost.Unity
7 {
6 {
@@ -18,7 +17,7 namespace Implab.ServiceHost.Unity
18 get; set;
17 get; set;
19 }
18 }
20
19
21 [XmlElement("signleton", typeof(SingletonLifetimeElement))]
20 [XmlElement("singleton", typeof(SingletonLifetimeElement))]
22 [XmlElement("context", typeof(ContextLifetimeElement))]
21 [XmlElement("context", typeof(ContextLifetimeElement))]
23 [XmlElement("container", typeof(ContainerLifetimeElement))]
22 [XmlElement("container", typeof(ContainerLifetimeElement))]
24 [XmlElement("hierarchy", typeof(HierarchicalLifetimeElement))]
23 [XmlElement("hierarchy", typeof(HierarchicalLifetimeElement))]
@@ -1,7 +1,4
1 using System;
1 using System;
2 using System.Collections.Generic;
3 using System.IO;
4 using System.Reflection;
5 using System.Xml;
2 using System.Xml;
6 using System.Xml.Serialization;
3 using System.Xml.Serialization;
7 using Implab.Components;
4 using Implab.Components;
@@ -8,7 +8,7 namespace Implab.ServiceHost.Unity {
8 [XmlAttribute("name")]
8 [XmlAttribute("name")]
9 public string RegistrationName { get; set; }
9 public string RegistrationName { get; set; }
10
10
11 [XmlElement("signleton", typeof(SingletonLifetimeElement))]
11 [XmlElement("singleton", typeof(SingletonLifetimeElement))]
12 [XmlElement("context", typeof(ContextLifetimeElement))]
12 [XmlElement("context", typeof(ContextLifetimeElement))]
13 [XmlElement("container", typeof(ContainerLifetimeElement))]
13 [XmlElement("container", typeof(ContainerLifetimeElement))]
14 [XmlElement("hierarchy", typeof(HierarchicalLifetimeElement))]
14 [XmlElement("hierarchy", typeof(HierarchicalLifetimeElement))]
@@ -1,7 +1,6
1 using Unity.Lifetime;
1 using Unity.Lifetime;
2
2
3 namespace Implab.ServiceHost.Unity
3 namespace Implab.ServiceHost.Unity {
4 {
5 public class SingletonLifetimeElement : LifetimeElement {
4 public class SingletonLifetimeElement : LifetimeElement {
6 public override LifetimeManager GetLifetime(ContainerBuilder builder) {
5 public override LifetimeManager GetLifetime(ContainerBuilder builder) {
7 return new SingletonLifetimeManager();
6 return new SingletonLifetimeManager();
@@ -1,24 +1,24
1 <Project Sdk="Microsoft.NET.Sdk">
1 <Project Sdk="Microsoft.NET.Sdk">
2 <PropertyGroup Condition="'$(OSTYPE)'=='linux'">
2 <PropertyGroup>
3 <TargetFrameworks>netcoreapp2.0;net46</TargetFrameworks>
3 <TargetFramework>net5.0</TargetFramework>
4 <FrameworkPathOverride Condition="'$(TargetFramework)'=='net46'">/usr/lib/mono/4.5/</FrameworkPathOverride>
5 </PropertyGroup>
6
4
7 <PropertyGroup Condition="'$(OSTYPE)'=='windows'">
5 <IsPackable>false</IsPackable>
8 <TargetFrameworks>netcoreapp2.0;net46</TargetFrameworks>
6 </PropertyGroup>
9 </PropertyGroup>
10
7
11 <PropertyGroup>
8 <ItemGroup>
12 <IsPackable>false</IsPackable>
9 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
13 </PropertyGroup>
10 <PackageReference Include="xunit" Version="2.4.1" />
11 <PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
12 <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
13 <PrivateAssets>all</PrivateAssets>
14 </PackageReference>
15 <PackageReference Include="coverlet.collector" Version="1.3.0">
16 <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
17 <PrivateAssets>all</PrivateAssets>
18 </PackageReference>
14
19
15 <ItemGroup>
20 <PackageReference Include="System.Reactive" Version="4.0.0" />
16 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.6.0-preview-20180109-01" />
21 <ProjectReference Include="../Implab/Implab.csproj" />
17 <PackageReference Include="System.Reactive" Version="4.0.0" />
22 </ItemGroup>
18 <PackageReference Include="xunit" Version="2.3.1" />
23
19 <PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
20 <ProjectReference Include="../Implab/Implab.csproj"/>
21 <DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
22 </ItemGroup>
23
24 </Project>
24 </Project>
@@ -7,8 +7,8
7 JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal
7 JSON pull-parser, ECMA-style promises, lightweight synchonization routines Signal
8 and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc.
8 and SharedLock, Trace helpers on top of System.Diagnostics, ObjectPool etc.
9 </Description>
9 </Description>
10 <Copyright>2012-2018 Sergey Smirnov</Copyright>
10 <Copyright>2012-2021 Sergey Smirnov</Copyright>
11 <Version>3.0.14</Version>
11 <Version>3.0.16</Version>
12 <PackageLicenseUrl>https://bitbucket.org/wozard/implabnet/src/v3/Implab/license.txt</PackageLicenseUrl>
12 <PackageLicenseUrl>https://bitbucket.org/wozard/implabnet/src/v3/Implab/license.txt</PackageLicenseUrl>
13 <PackageProjectUrl>https://bitbucket.org/wozard/implabnet</PackageProjectUrl>
13 <PackageProjectUrl>https://bitbucket.org/wozard/implabnet</PackageProjectUrl>
14 <RepositoryUrl>https://bitbucket.org/wozard/implabnet</RepositoryUrl>
14 <RepositoryUrl>https://bitbucket.org/wozard/implabnet</RepositoryUrl>
@@ -20,7 +20,7
20 </PropertyGroup>
20 </PropertyGroup>
21
21
22 <ItemGroup>
22 <ItemGroup>
23 <EmbeddedResource Include="src\Xml\json.xsl"/>
23 <EmbeddedResource LogicalName="Implab.Xml.json.xsl" Include="src\Xml\json.xsl"/>
24 </ItemGroup>
24 </ItemGroup>
25
25
26 </Project>
26 </Project>
@@ -1,8 +1,6
1 using System;
1 using System;
2 using Implab.Parallels;
2 using Implab.Parallels;
3 using System.Threading;
3 using System.Threading;
4 using System.Reflection;
5 using System.Diagnostics;
6
4
7 namespace Implab {
5 namespace Implab {
8 /// <summary>
6 /// <summary>
@@ -1,8 +1,4
1 using System;
1 using System.Collections.Generic;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6
2
7 namespace Implab.Automaton {
3 namespace Implab.Automaton {
8 /// <summary>
4 /// <summary>
@@ -1,5 +1,4
1 using System;
1 using System.Collections.Generic;
2 using System.Collections.Generic;
3
2
4 namespace Implab.Automaton {
3 namespace Implab.Automaton {
5 public interface IDFATableBuilder : IDFATable, ICollection<AutomatonTransition> {
4 public interface IDFATableBuilder : IDFATable, ICollection<AutomatonTransition> {
@@ -1,8 +1,5
1 using Implab;
1 using System;
2 using System;
3 using System.Collections.Generic;
2 using System.Collections.Generic;
4 using System.Diagnostics;
5 using System.Linq;
6
3
7 namespace Implab.Automaton {
4 namespace Implab.Automaton {
8 /// <summary>
5 /// <summary>
@@ -1,9 +1,5
1 using Implab;
1 using System;
2 using System;
3 using System.Collections.Generic;
2 using System.Collections.Generic;
4 using System.Linq;
5 using System.Text;
6 using System.Threading.Tasks;
7
3
8 namespace Implab {
4 namespace Implab {
9 /// <summary>
5 /// <summary>
@@ -2,12 +2,11
2 #define TRACE
2 #define TRACE
3
3
4 using System;
4 using System;
5 using System.Collections.Generic;
6 using System.Diagnostics;
5 using System.Diagnostics;
7 using System.Linq;
6
8 using System.Text;
7 #if NETFX_TRACE_BUG
9 using System.Threading;
8 using System.Threading;
10 using System.Threading.Tasks;
9 #endif
11
10
12 namespace Implab.Diagnostics {
11 namespace Implab.Diagnostics {
13 /// <summary>
12 /// <summary>
@@ -1,6 +1,5
1 using System;
1 using System;
2 using System.Collections.Generic;
2 using System.Collections.Generic;
3 using System.Diagnostics;
4 using Implab.Parallels;
3 using Implab.Parallels;
5
4
6 namespace Implab.Diagnostics {
5 namespace Implab.Diagnostics {
@@ -1,6 +1,5
1 using System;
1 using System;
2 using System.Threading;
2 using System.Threading;
3 using TraceSource = System.Diagnostics.TraceSource;
4
3
5 namespace Implab.Diagnostics {
4 namespace Implab.Diagnostics {
6 /// <summary>
5 /// <summary>
@@ -1,10 +1,7
1 using Implab.Automaton;
1 using Implab.Automaton;
2 using System;
3 using System.Collections.Generic;
2 using System.Collections.Generic;
4 using System.Linq;
3 using System.Linq;
5 using System.Runtime.CompilerServices;
4 using System.Runtime.CompilerServices;
6 using System.Text;
7 using System.Threading.Tasks;
8
5
9 namespace Implab.Formats {
6 namespace Implab.Formats {
10 public class CharMap : IAlphabet<char> {
7 public class CharMap : IAlphabet<char> {
@@ -1,11 +1,6
1 using Implab.Automaton;
1 using Implab.Automaton;
2 using System;
3 using System.Collections.Generic;
4 using System.Diagnostics;
2 using System.Diagnostics;
5 using System.Linq;
6 using System.Runtime.CompilerServices;
3 using System.Runtime.CompilerServices;
7 using System.Text;
8 using System.Threading.Tasks;
9
4
10 namespace Implab.Formats {
5 namespace Implab.Formats {
11
6
@@ -1,5 +1,4
1 using Implab;
1 using System;
2 using System;
3 using System.Collections.Generic;
2 using System.Collections.Generic;
4 using System.Linq;
3 using System.Linq;
5 using Implab.Automaton;
4 using Implab.Automaton;
@@ -1,10 +1,5
1 using Implab.Automaton;
1 using Implab.Automaton;
2 using System;
3 using System.Collections.Generic;
4 using System.Linq;
5 using System.Runtime.CompilerServices;
2 using System.Runtime.CompilerServices;
6 using System.Text;
7 using System.Threading.Tasks;
8
3
9 namespace Implab.Formats {
4 namespace Implab.Formats {
10 public class InputScanner<TTag> {
5 public class InputScanner<TTag> {
@@ -7,7 +7,6 using System.Linq;
7 using Implab.Components;
7 using Implab.Components;
8 using System.Collections.Generic;
8 using System.Collections.Generic;
9 using System.Text;
9 using System.Text;
10 using System.Globalization;
11
10
12 namespace Implab.Formats.Json {
11 namespace Implab.Formats.Json {
13 /// <summary>
12 /// <summary>
@@ -1,9 +1,6
1 using System;
1 using Implab.Automaton;
2 using System.Globalization;
3 using Implab.Automaton;
4 using System.Text;
2 using System.Text;
5 using Implab.Components;
3 using Implab.Components;
6 using System.IO;
7
4
8 namespace Implab.Formats.Json {
5 namespace Implab.Formats.Json {
9 /// <summary>
6 /// <summary>
@@ -1,8 +1,4
1 using System;
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6
2
7 namespace Implab.Formats.Json {
3 namespace Implab.Formats.Json {
8 public class JsonStringScanner : JsonScanner {
4 public class JsonStringScanner : JsonScanner {
@@ -1,9 +1,5
1 using System;
1 using System.IO;
2 using System.Collections.Generic;
3 using System.IO;
4 using System.Linq;
5 using System.Text;
2 using System.Text;
6 using System.Threading.Tasks;
7
3
8 namespace Implab.Formats.Json {
4 namespace Implab.Formats.Json {
9 public class JsonTextScanner : JsonScanner {
5 public class JsonTextScanner : JsonScanner {
@@ -1,11 +1,5
1 using Implab;
1 using System.Diagnostics;
2 using Implab.Formats;
3 using System;
4 using System.Collections.Generic;
5 using System.Diagnostics;
6 using System.Linq;
2 using System.Linq;
7 using System.Text;
8 using System.Threading.Tasks;
9
3
10 namespace Implab.Formats.Json {
4 namespace Implab.Formats.Json {
11 /// <summary>
5 /// <summary>
@@ -1,7 +1,4
1 using System;
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5
2
6 namespace Implab {
3 namespace Implab {
7 public interface IPromise {
4 public interface IPromise {
@@ -1,6 +1,4
1 using System;
1 namespace Implab {
2
3 namespace Implab {
4 public interface IPromise<out T> : IPromise {
2 public interface IPromise<out T> : IPromise {
5
3
6 void Then(IResolvable<T> next);
4 void Then(IResolvable<T> next);
@@ -2,7 +2,6
2 using System.Collections.Generic;
2 using System.Collections.Generic;
3 using System;
3 using System;
4 using System.Collections;
4 using System.Collections;
5 using System.Diagnostics;
6 using System.Runtime.CompilerServices;
5 using System.Runtime.CompilerServices;
7
6
8 namespace Implab.Parallels {
7 namespace Implab.Parallels {
@@ -1,6 +1,5
1 using System;
1 using System;
2 using System.Threading;
2 using System.Threading;
3 using System.Diagnostics;
4
3
5 namespace Implab.Parallels {
4 namespace Implab.Parallels {
6 /// <summary>
5 /// <summary>
@@ -1,5 +1,4
1 using System;
1 using System.Threading;
2 using System.Threading;
3
2
4 namespace Implab.Parallels {
3 namespace Implab.Parallels {
5 /// <summary>
4 /// <summary>
@@ -1,6 +1,5
1 using System.Threading;
1 using System.Threading;
2 using System.Collections.Generic;
2 using System.Collections.Generic;
3 using System;
4 using System.Collections;
3 using System.Collections;
5
4
6 namespace Implab.Parallels {
5 namespace Implab.Parallels {
@@ -39,7 +38,7 namespace Implab.Parallels {
39 public void Enqueue(T value) {
38 public void Enqueue(T value) {
40 var next = new Node(value);
39 var next = new Node(value);
41
40
42 // Interlocaked.CompareExchange implies Thread.MemoryBarrier();
41 // Interlocked.CompareExchange implies Thread.MemoryBarrier();
43 // to ensure that the next node is completely constructed
42 // to ensure that the next node is completely constructed
44 var last = Interlocked.Exchange(ref m_last, next);
43 var last = Interlocked.Exchange(ref m_last, next);
45
44
@@ -3,7 +3,6 using System.Collections.Generic;
3 using System.Diagnostics;
3 using System.Diagnostics;
4 using System.Reflection;
4 using System.Reflection;
5 using System.Threading;
5 using System.Threading;
6 using System.Threading.Tasks;
7 using Implab.Parallels;
6 using Implab.Parallels;
8
7
9 namespace Implab {
8 namespace Implab {
@@ -1,5 +1,4
1 using System;
1 using System;
2 using System.Diagnostics;
3
2
4 namespace Implab {
3 namespace Implab {
5 class PromiseActionReaction : IResolvable {
4 class PromiseActionReaction : IResolvable {
@@ -39,7 +38,7 namespace Implab {
39 }
38 }
40
39
41 public void Reject(Exception error) {
40 public void Reject(Exception error) {
42 if (m_fulfilled != null) {
41 if (m_rejected != null) {
43 if (m_dispatcher != null)
42 if (m_dispatcher != null)
44 m_dispatcher.Enqueue(RejectImpl, error);
43 m_dispatcher.Enqueue(RejectImpl, error);
45 else
44 else
@@ -1,5 +1,4
1 using System;
1 using System;
2 using System.Diagnostics;
3
2
4 namespace Implab {
3 namespace Implab {
5 class PromiseActionReaction<T> : IResolvable<T> {
4 class PromiseActionReaction<T> : IResolvable<T> {
@@ -38,7 +37,7 namespace Implab {
38 }
37 }
39
38
40 public void Reject(Exception error) {
39 public void Reject(Exception error) {
41 if (m_fulfilled != null) {
40 if (m_rejected != null) {
42 if (m_dispatcher != null)
41 if (m_dispatcher != null)
43 m_dispatcher.Enqueue(RejectImpl, error);
42 m_dispatcher.Enqueue(RejectImpl, error);
44 else
43 else
@@ -1,8 +1,4
1 using System.Threading;
1 using System;
2 using System;
3 using Implab.Diagnostics;
4 using System.Collections.Generic;
5 using System.Linq;
6
2
7 namespace Implab {
3 namespace Implab {
8 public static class PromiseExtensions {
4 public static class PromiseExtensions {
@@ -1,5 +1,4
1 using System;
1 using System;
2 using System.Diagnostics;
3
2
4 namespace Implab {
3 namespace Implab {
5 class PromiseFuncReaction<TRet> : IResolvable {
4 class PromiseFuncReaction<TRet> : IResolvable {
@@ -38,7 +37,7 namespace Implab {
38 }
37 }
39
38
40 public void Reject(Exception error) {
39 public void Reject(Exception error) {
41 if (m_fulfilled != null) {
40 if (m_rejected != null) {
42 if (m_dispatcher != null)
41 if (m_dispatcher != null)
43 m_dispatcher.Enqueue(RejectImpl, error);
42 m_dispatcher.Enqueue(RejectImpl, error);
44 else
43 else
@@ -1,5 +1,4
1 using System;
1 using System;
2 using System.Diagnostics;
3
2
4 namespace Implab {
3 namespace Implab {
5 class PromiseFuncReaction<TIn, TRet> : IResolvable<TIn> {
4 class PromiseFuncReaction<TIn, TRet> : IResolvable<TIn> {
@@ -43,7 +42,7 namespace Implab {
43 }
42 }
44
43
45 public void Reject(Exception error) {
44 public void Reject(Exception error) {
46 if (m_fulfilled != null) {
45 if (m_rejected != null) {
47 if (m_dispatcher != null)
46 if (m_dispatcher != null)
48 m_dispatcher.Enqueue(RejectImpl, error);
47 m_dispatcher.Enqueue(RejectImpl, error);
49 else
48 else
@@ -1,5 +1,4
1 using System;
1 using System;
2 using System.Diagnostics;
3 using System.Reflection;
2 using System.Reflection;
4 using Implab.Parallels;
3 using Implab.Parallels;
5
4
@@ -1,7 +1,5
1 using System;
1 using System;
2 using System.Collections.Generic;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Text.RegularExpressions;
3 using System.Text.RegularExpressions;
6 using System.Diagnostics;
4 using System.Diagnostics;
7 using System.Collections;
5 using System.Collections;
@@ -13,8 +11,7 using System.Threading;
13 using System.Threading.Tasks;
11 using System.Threading.Tasks;
14 #endif
12 #endif
15
13
16 namespace Implab
14 namespace Implab {
17 {
18 public static class Safe
15 public static class Safe
19 {
16 {
20 [MethodImpl(MethodImplOptions.AggressiveInlining)]
17 [MethodImpl(MethodImplOptions.AggressiveInlining)]
@@ -1,11 +1,7
1 using System;
1 namespace Implab.Xml {
2
2 public enum JsonXmlCaseTransform {
3 namespace Implab.Xml
3 None,
4 {
4 UcFirst,
5 public enum JsonXmlCaseTransform
5 LcFirst
6 {
6 }
7 None,
8 UcFirst,
9 LcFirst
10 }
11 } No newline at end of file
7 }
@@ -1,7 +1,6
1 using Implab.Formats.Json;
1 using Implab.Formats.Json;
2 using System;
2 using System;
3 using System.Collections.Generic;
3 using System.Collections.Generic;
4 using System.Globalization;
5 using System.IO;
4 using System.IO;
6 using System.Linq;
5 using System.Linq;
7 using System.Xml;
6 using System.Xml;
@@ -1,10 +1,4
1 using System;
1 namespace Implab.Xml {
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6
7 namespace Implab.Xml {
8 enum JsonXmlReaderPosition {
2 enum JsonXmlReaderPosition {
9 Initial,
3 Initial,
10 Declaration,
4 Declaration,
@@ -1,10 +1,5
1 using System;
1 using System.IO;
2 using System.Collections.Generic;
3 using System.IO;
4 using System.Linq;
5 using System.Reflection;
2 using System.Reflection;
6 using System.Text;
7 using System.Threading.Tasks;
8 using System.Xml;
3 using System.Xml;
9 using System.Xml.Linq;
4 using System.Xml.Linq;
10 using System.Xml.Serialization;
5 using System.Xml.Serialization;
@@ -1,10 +1,6
1 using Implab.Components;
1 using Implab.Components;
2 using System;
2 using System;
3 using System.Collections.Generic;
4 using System.IO;
3 using System.IO;
5 using System.Linq;
6 using System.Text;
7 using System.Threading.Tasks;
8 using System.Xml;
4 using System.Xml;
9 using System.Xml.Serialization;
5 using System.Xml.Serialization;
10
6
@@ -1,8 +1,5
1 using System;
1 using System;
2 using System.Collections.Generic;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6 using System.Xml;
3 using System.Xml;
7
4
8 namespace Implab.Xml {
5 namespace Implab.Xml {
@@ -1,9 +1,4
1 using System;
1 using System.Xml;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6 using System.Xml;
7
2
8 namespace Implab.Xml {
3 namespace Implab.Xml {
9 public class XmlSimpleAttribute {
4 public class XmlSimpleAttribute {
@@ -1,10 +1,8
1 using System;
2 using System.IO;
1 using System.IO;
3 using System.Reflection;
2 using System.Reflection;
4 using System.Xml;
3 using System.Xml;
5 using System.Xml.Xsl;
4 using System.Xml.Xsl;
6 using Implab.Components;
5 using Implab.Components;
7 using Implab.Formats.Json;
8
6
9 namespace Implab.Xml {
7 namespace Implab.Xml {
10 public class XmlToJson {
8 public class XmlToJson {
General Comments 0
You need to be logged in to leave comments. Login now