Added a set of interfaces implementing async methods in a plain enough way to support coroutines, RPC and P/Invokes; updated copyright statement for the year 2017

git-svn-id: file:///srv/devel/repo-conversion/nusu@329 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
Markus Ewald 2017-01-21 21:33:55 +00:00
parent 6053f5a877
commit fdf4442163
133 changed files with 789 additions and 459 deletions

View File

@ -1,334 +1,341 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup> <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion> <ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion> <SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{00567408-4F44-4C00-866E-B04A99E482F2}</ProjectGuid> <ProjectGuid>{00567408-4F44-4C00-866E-B04A99E482F2}</ProjectGuid>
<OutputType>Library</OutputType> <OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder> <AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Nuclex.Support</RootNamespace> <RootNamespace>Nuclex.Support</RootNamespace>
<AssemblyName>Nuclex.Support</AssemblyName> <AssemblyName>Nuclex.Support</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<TargetFrameworkProfile>Client</TargetFrameworkProfile> <TargetFrameworkProfile>Client</TargetFrameworkProfile>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols> <DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType> <DebugType>full</DebugType>
<Optimize>false</Optimize> <Optimize>false</Optimize>
<OutputPath>bin\net-4.0\Debug\</OutputPath> <OutputPath>bin\net-4.0\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;UNITTEST;WINDOWS</DefineConstants> <DefineConstants>TRACE;DEBUG;UNITTEST;WINDOWS</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
<DocumentationFile>bin\net-4.0\Debug\Nuclex.Support.xml</DocumentationFile> <DocumentationFile>bin\net-4.0\Debug\Nuclex.Support.xml</DocumentationFile>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType> <DebugType>pdbonly</DebugType>
<Optimize>true</Optimize> <Optimize>true</Optimize>
<OutputPath>bin\net-4.0\Release\</OutputPath> <OutputPath>bin\net-4.0\Release\</OutputPath>
<DefineConstants>TRACE;UNITTEST;WINDOWS</DefineConstants> <DefineConstants>TRACE;UNITTEST;WINDOWS</DefineConstants>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
<DocumentationFile>bin\net-4.0\Release\Nuclex.Support.xml</DocumentationFile> <DocumentationFile>bin\net-4.0\Release\Nuclex.Support.xml</DocumentationFile>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<SignAssembly>true</SignAssembly> <SignAssembly>true</SignAssembly>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<AssemblyOriginatorKeyFile>..\Foundation.snk</AssemblyOriginatorKeyFile> <AssemblyOriginatorKeyFile>..\Foundation.snk</AssemblyOriginatorKeyFile>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="NMock.StrongNamed"> <Reference Include="NMock.StrongNamed">
<HintPath>..\References\nmock\net-4.0\NMock.StrongNamed.dll</HintPath> <HintPath>..\References\nmock\net-4.0\NMock.StrongNamed.dll</HintPath>
</Reference> </Reference>
<Reference Include="nunit.framework, Version=2.6.0.12051, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL"> <Reference Include="nunit.framework, Version=2.6.0.12051, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion> <SpecificVersion>False</SpecificVersion>
<HintPath>..\References\nunit\net-4.0\framework\nunit.framework.dll</HintPath> <HintPath>..\References\nunit\net-4.0\framework\nunit.framework.dll</HintPath>
</Reference> </Reference>
<Reference Include="System" /> <Reference Include="System" />
<Reference Include="System.Core" /> <Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" /> <Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" /> <Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" /> <Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" /> <Reference Include="System.Data" />
<Reference Include="System.Xml" /> <Reference Include="System.Xml" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Source\Cloning\CloneFactoryTest.cs" /> <Compile Include="Source\Async\AsyncStatus.cs" />
<Compile Include="Source\Cloning\ExpressionTreeCloner.cs" /> <Compile Include="Source\Async\AsyncStatusEventArgs.cs" />
<Compile Include="Source\Cloning\ExpressionTreeCloner.FieldBased.cs"> <Compile Include="Source\Async\IAsyncAction.cs" />
<DependentUpon>ExpressionTreeCloner.cs</DependentUpon> <Compile Include="Source\Async\IAsyncSwitch.cs" />
</Compile> <Compile Include="Source\Async\IAsyncTask.cs" />
<Compile Include="Source\Cloning\ExpressionTreeCloner.PropertyBased.cs"> <Compile Include="Source\Async\ICancellable.cs" />
<DependentUpon>ExpressionTreeCloner.cs</DependentUpon> <Compile Include="Source\Async\IProgressSource.cs" />
</Compile> <Compile Include="Source\Cloning\CloneFactoryTest.cs" />
<Compile Include="Source\Cloning\ExpressionTreeCloner.Test.cs"> <Compile Include="Source\Cloning\ExpressionTreeCloner.cs" />
<DependentUpon>ExpressionTreeCloner.cs</DependentUpon> <Compile Include="Source\Cloning\ExpressionTreeCloner.FieldBased.cs">
</Compile> <DependentUpon>ExpressionTreeCloner.cs</DependentUpon>
<Compile Include="Source\Cloning\IStateCopier.cs" /> </Compile>
<Compile Include="Source\Cloning\ReflectionCloner.cs" /> <Compile Include="Source\Cloning\ExpressionTreeCloner.PropertyBased.cs">
<Compile Include="Source\Cloning\ReflectionCloner.Test.cs"> <DependentUpon>ExpressionTreeCloner.cs</DependentUpon>
<DependentUpon>ReflectionCloner.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Cloning\ExpressionTreeCloner.Test.cs">
<Compile Include="Source\Cloning\ICloneFactory.cs" /> <DependentUpon>ExpressionTreeCloner.cs</DependentUpon>
<Compile Include="Source\Cloning\SerializationCloner.cs" /> </Compile>
<Compile Include="Source\Cloning\SerializationCloner.Test.cs"> <Compile Include="Source\Cloning\IStateCopier.cs" />
<DependentUpon>SerializationCloner.cs</DependentUpon> <Compile Include="Source\Cloning\ReflectionCloner.cs" />
</Compile> <Compile Include="Source\Cloning\ReflectionCloner.Test.cs">
<Compile Include="Source\Collections\Constants.cs" /> <DependentUpon>ReflectionCloner.cs</DependentUpon>
<Compile Include="Source\Collections\Constants.Test.cs"> </Compile>
<DependentUpon>Constants.cs</DependentUpon> <Compile Include="Source\Cloning\ICloneFactory.cs" />
</Compile> <Compile Include="Source\Cloning\SerializationCloner.cs" />
<Compile Include="Source\Collections\Deque.cs" /> <Compile Include="Source\Cloning\SerializationCloner.Test.cs">
<Compile Include="Source\Collections\Deque.Insertion.cs"> <DependentUpon>SerializationCloner.cs</DependentUpon>
<DependentUpon>Deque.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Collections\Constants.cs" />
<Compile Include="Source\Collections\Deque.Interfaces.cs"> <Compile Include="Source\Collections\Constants.Test.cs">
<DependentUpon>Deque.cs</DependentUpon> <DependentUpon>Constants.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="Source\Collections\Deque.Removal.cs"> <Compile Include="Source\Collections\Deque.cs" />
<DependentUpon>Deque.cs</DependentUpon> <Compile Include="Source\Collections\Deque.Insertion.cs">
</Compile> <DependentUpon>Deque.cs</DependentUpon>
<Compile Include="Source\Collections\Deque.Search.cs"> </Compile>
<DependentUpon>Deque.cs</DependentUpon> <Compile Include="Source\Collections\Deque.Interfaces.cs">
</Compile> <DependentUpon>Deque.cs</DependentUpon>
<Compile Include="Source\Collections\Deque.Test.cs"> </Compile>
<DependentUpon>Deque.cs</DependentUpon> <Compile Include="Source\Collections\Deque.Removal.cs">
</Compile> <DependentUpon>Deque.cs</DependentUpon>
<Compile Include="Source\Collections\IMultiDictionary.cs" /> </Compile>
<Compile Include="Source\Collections\IObservableCollection.cs" /> <Compile Include="Source\Collections\Deque.Search.cs">
<Compile Include="Source\Collections\IRecyclable.cs" /> <DependentUpon>Deque.cs</DependentUpon>
<Compile Include="Source\Collections\ItemEventArgs.cs" /> </Compile>
<Compile Include="Source\Collections\ItemEventArgs.Test.cs"> <Compile Include="Source\Collections\Deque.Test.cs">
<DependentUpon>ItemEventArgs.cs</DependentUpon> <DependentUpon>Deque.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="Source\Collections\ItemReplaceEventArgs.cs" /> <Compile Include="Source\Collections\IMultiDictionary.cs" />
<Compile Include="Source\Collections\ItemReplaceEventArgs.Test.cs"> <Compile Include="Source\Collections\IObservableCollection.cs" />
<DependentUpon>ItemReplaceEventArgs.cs</DependentUpon> <Compile Include="Source\Collections\IRecyclable.cs" />
</Compile> <Compile Include="Source\Collections\ItemEventArgs.cs" />
<Compile Include="Source\Collections\MultiDictionary.cs" /> <Compile Include="Source\Collections\ItemEventArgs.Test.cs">
<Compile Include="Source\Collections\MultiDictionary.ValueCollection.cs"> <DependentUpon>ItemEventArgs.cs</DependentUpon>
<DependentUpon>MultiDictionary.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Collections\ItemReplaceEventArgs.cs" />
<Compile Include="Source\Collections\MultiDictionary.Interfaces.cs"> <Compile Include="Source\Collections\ItemReplaceEventArgs.Test.cs">
<DependentUpon>MultiDictionary.cs</DependentUpon> <DependentUpon>ItemReplaceEventArgs.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="Source\Collections\MultiDictionary.Test.cs"> <Compile Include="Source\Collections\MultiDictionary.cs" />
<DependentUpon>MultiDictionary.cs</DependentUpon> <Compile Include="Source\Collections\MultiDictionary.ValueCollection.cs">
</Compile> <DependentUpon>MultiDictionary.cs</DependentUpon>
<Compile Include="Source\Collections\ObservableCollection.cs" /> </Compile>
<Compile Include="Source\Collections\ObservableCollection.Test.cs"> <Compile Include="Source\Collections\MultiDictionary.Interfaces.cs">
<DependentUpon>ObservableCollection.cs</DependentUpon> <DependentUpon>MultiDictionary.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="Source\Collections\ObservableDictionary.cs" /> <Compile Include="Source\Collections\MultiDictionary.Test.cs">
<Compile Include="Source\Collections\ObservableDictionary.Test.cs"> <DependentUpon>MultiDictionary.cs</DependentUpon>
<DependentUpon>ObservableDictionary.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Collections\ObservableCollection.cs" />
<Compile Include="Source\Collections\ObservableList.cs" /> <Compile Include="Source\Collections\ObservableCollection.Test.cs">
<Compile Include="Source\Collections\ObservableList.Test.cs"> <DependentUpon>ObservableCollection.cs</DependentUpon>
<DependentUpon>ObservableList.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Collections\ObservableDictionary.cs" />
<Compile Include="Source\Collections\ObservableSet.cs" /> <Compile Include="Source\Collections\ObservableDictionary.Test.cs">
<Compile Include="Source\Collections\ObservableSet.Test.cs"> <DependentUpon>ObservableDictionary.cs</DependentUpon>
<DependentUpon>ObservableSet.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Collections\ObservableList.cs" />
<Compile Include="Source\Collections\PairPriorityQueue.cs" /> <Compile Include="Source\Collections\ObservableList.Test.cs">
<Compile Include="Source\Collections\PairPriorityQueue.Test.cs"> <DependentUpon>ObservableList.cs</DependentUpon>
<DependentUpon>PairPriorityQueue.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Collections\ObservableSet.cs" />
<Compile Include="Source\Collections\Parentable.cs" /> <Compile Include="Source\Collections\ObservableSet.Test.cs">
<Compile Include="Source\Collections\Parentable.Test.cs"> <DependentUpon>ObservableSet.cs</DependentUpon>
<DependentUpon>Parentable.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Collections\PairPriorityQueue.cs" />
<Compile Include="Source\Collections\ParentingCollection.cs" /> <Compile Include="Source\Collections\PairPriorityQueue.Test.cs">
<Compile Include="Source\Collections\ParentingCollection.Test.cs"> <DependentUpon>PairPriorityQueue.cs</DependentUpon>
<DependentUpon>ParentingCollection.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Collections\Parentable.cs" />
<Compile Include="Source\Collections\Pool.cs" /> <Compile Include="Source\Collections\Parentable.Test.cs">
<Compile Include="Source\Collections\Pool.Test.cs"> <DependentUpon>Parentable.cs</DependentUpon>
<DependentUpon>Pool.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Collections\ParentingCollection.cs" />
<Compile Include="Source\Collections\PriorityItemPair.cs" /> <Compile Include="Source\Collections\ParentingCollection.Test.cs">
<Compile Include="Source\Collections\PriorityItemPair.Test.cs"> <DependentUpon>ParentingCollection.cs</DependentUpon>
<DependentUpon>PriorityItemPair.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Collections\Pool.cs" />
<Compile Include="Source\Collections\PriorityQueue.cs" /> <Compile Include="Source\Collections\Pool.Test.cs">
<Compile Include="Source\Collections\PriorityQueue.Test.cs"> <DependentUpon>Pool.cs</DependentUpon>
<DependentUpon>PriorityQueue.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Collections\PriorityItemPair.cs" />
<Compile Include="Source\Collections\ReadOnlyCollection.cs" /> <Compile Include="Source\Collections\PriorityItemPair.Test.cs">
<Compile Include="Source\Collections\ReadOnlyCollection.Test.cs"> <DependentUpon>PriorityItemPair.cs</DependentUpon>
<DependentUpon>ReadOnlyCollection.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Collections\PriorityQueue.cs" />
<Compile Include="Source\Collections\ReadOnlyDictionary.cs" /> <Compile Include="Source\Collections\PriorityQueue.Test.cs">
<Compile Include="Source\Collections\ReadOnlyDictionary.Test.cs"> <DependentUpon>PriorityQueue.cs</DependentUpon>
<DependentUpon>ReadOnlyDictionary.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Collections\ReadOnlyCollection.cs" />
<Compile Include="Source\Collections\ReadOnlyList.cs" /> <Compile Include="Source\Collections\ReadOnlyCollection.Test.cs">
<Compile Include="Source\Collections\ReadOnlyList.Test.cs"> <DependentUpon>ReadOnlyCollection.cs</DependentUpon>
<DependentUpon>ReadOnlyList.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Collections\ReadOnlyDictionary.cs" />
<Compile Include="Source\Collections\ReadOnlySet.cs" /> <Compile Include="Source\Collections\ReadOnlyDictionary.Test.cs">
<Compile Include="Source\Collections\ReadOnlySet.Test.cs"> <DependentUpon>ReadOnlyDictionary.cs</DependentUpon>
<DependentUpon>ReadOnlySet.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Collections\ReadOnlyList.cs" />
<Compile Include="Source\Collections\ReverseComparer.cs" /> <Compile Include="Source\Collections\ReadOnlyList.Test.cs">
<Compile Include="Source\Collections\ReverseComparer.Test.cs"> <DependentUpon>ReadOnlyList.cs</DependentUpon>
<DependentUpon>ReverseComparer.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Collections\ReadOnlySet.cs" />
<Compile Include="Source\Collections\TransformingReadOnlyCollection.cs" /> <Compile Include="Source\Collections\ReadOnlySet.Test.cs">
<Compile Include="Source\Collections\TransformingReadOnlyCollection.Interfaces.cs"> <DependentUpon>ReadOnlySet.cs</DependentUpon>
<DependentUpon>TransformingReadOnlyCollection.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Collections\ReverseComparer.cs" />
<Compile Include="Source\Collections\TransformingReadOnlyCollection.Test.cs"> <Compile Include="Source\Collections\ReverseComparer.Test.cs">
<DependentUpon>TransformingReadOnlyCollection.cs</DependentUpon> <DependentUpon>ReverseComparer.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="Source\Collections\Variegator.cs" /> <Compile Include="Source\Collections\TransformingReadOnlyCollection.cs" />
<Compile Include="Source\Collections\Variegator.Test.cs"> <Compile Include="Source\Collections\TransformingReadOnlyCollection.Interfaces.cs">
<DependentUpon>Variegator.cs</DependentUpon> <DependentUpon>TransformingReadOnlyCollection.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="Source\Collections\WeakCollection.cs" /> <Compile Include="Source\Collections\TransformingReadOnlyCollection.Test.cs">
<Compile Include="Source\Collections\WeakCollection.Interfaces.cs"> <DependentUpon>TransformingReadOnlyCollection.cs</DependentUpon>
<DependentUpon>WeakCollection.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Collections\Variegator.cs" />
<Compile Include="Source\Collections\WeakCollection.Test.cs"> <Compile Include="Source\Collections\Variegator.Test.cs">
<DependentUpon>WeakCollection.cs</DependentUpon> <DependentUpon>Variegator.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="Source\Settings\ConfigurationFileStore.cs" /> <Compile Include="Source\Collections\WeakCollection.cs" />
<Compile Include="Source\Settings\ConfigurationFileStore.Parsing.cs"> <Compile Include="Source\Collections\WeakCollection.Interfaces.cs">
<DependentUpon>ConfigurationFileStore.cs</DependentUpon> <DependentUpon>WeakCollection.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="Source\Settings\ConfigurationFileStore.Test.cs"> <Compile Include="Source\Collections\WeakCollection.Test.cs">
<DependentUpon>ConfigurationFileStore.cs</DependentUpon> <DependentUpon>WeakCollection.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="Source\Settings\ISettingsStore.cs" /> <Compile Include="Source\Settings\ConfigurationFileStore.cs" />
<Compile Include="Source\Settings\MemoryStore.cs" /> <Compile Include="Source\Settings\ConfigurationFileStore.Parsing.cs">
<Compile Include="Source\Settings\MemoryStore.Test.cs"> <DependentUpon>ConfigurationFileStore.cs</DependentUpon>
<DependentUpon>MemoryStore.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Settings\ConfigurationFileStore.Test.cs">
<Compile Include="Source\Settings\OptionInfo.cs" /> <DependentUpon>ConfigurationFileStore.cs</DependentUpon>
<Compile Include="Source\Settings\WindowsRegistryStore.cs" /> </Compile>
<Compile Include="Source\Settings\WindowsRegistryStore.Test.cs"> <Compile Include="Source\Settings\ISettingsStore.cs" />
<DependentUpon>WindowsRegistryStore.cs</DependentUpon> <Compile Include="Source\Settings\MemoryStore.cs" />
</Compile> <Compile Include="Source\Settings\MemoryStore.Test.cs">
<Compile Include="Source\GarbagePolicy.cs" /> <DependentUpon>MemoryStore.cs</DependentUpon>
<Compile Include="Source\IO\PartialStream.cs" /> </Compile>
<Compile Include="Source\IO\PartialStream.Test.cs"> <Compile Include="Source\Settings\OptionInfo.cs" />
<DependentUpon>PartialStream.cs</DependentUpon> <Compile Include="Source\Settings\WindowsRegistryStore.cs" />
</Compile> <Compile Include="Source\Settings\WindowsRegistryStore.Test.cs">
<Compile Include="Source\IO\RingMemoryStream.cs" /> <DependentUpon>WindowsRegistryStore.cs</DependentUpon>
<Compile Include="Source\IO\RingMemoryStream.Test.cs"> </Compile>
<DependentUpon>RingMemoryStream.cs</DependentUpon> <Compile Include="Source\GarbagePolicy.cs" />
</Compile> <Compile Include="Source\IO\PartialStream.cs" />
<Compile Include="Source\IO\ChainStream.cs" /> <Compile Include="Source\IO\PartialStream.Test.cs">
<Compile Include="Source\IO\ChainStream.Test.cs"> <DependentUpon>PartialStream.cs</DependentUpon>
<DependentUpon>ChainStream.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\IO\RingMemoryStream.cs" />
<Compile Include="Source\Licensing\LicenseKey.cs" /> <Compile Include="Source\IO\RingMemoryStream.Test.cs">
<Compile Include="Source\Licensing\LicenseKey.Test.cs"> <DependentUpon>RingMemoryStream.cs</DependentUpon>
<DependentUpon>LicenseKey.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\IO\ChainStream.cs" />
<Compile Include="Source\Parsing\CommandLine.cs" /> <Compile Include="Source\IO\ChainStream.Test.cs">
<Compile Include="Source\Parsing\CommandLine.Argument.cs"> <DependentUpon>ChainStream.cs</DependentUpon>
<DependentUpon>CommandLine.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Licensing\LicenseKey.cs" />
<Compile Include="Source\Parsing\CommandLine.Formatter.cs"> <Compile Include="Source\Licensing\LicenseKey.Test.cs">
<DependentUpon>CommandLine.cs</DependentUpon> <DependentUpon>LicenseKey.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="Source\Parsing\CommandLine.Test.cs"> <Compile Include="Source\Parsing\CommandLine.cs" />
<DependentUpon>CommandLine.cs</DependentUpon> <Compile Include="Source\Parsing\CommandLine.Argument.cs">
</Compile> <DependentUpon>CommandLine.cs</DependentUpon>
<Compile Include="Source\Parsing\CommandLine.Parser.cs"> </Compile>
<DependentUpon>CommandLine.cs</DependentUpon> <Compile Include="Source\Parsing\CommandLine.Formatter.cs">
</Compile> <DependentUpon>CommandLine.cs</DependentUpon>
<Compile Include="Source\ParallelBackgroundWorker.cs" /> </Compile>
<Compile Include="Source\ParallelBackgroundWorker.Test.cs"> <Compile Include="Source\Parsing\CommandLine.Test.cs">
<DependentUpon>ParallelBackgroundWorker.cs</DependentUpon> <DependentUpon>CommandLine.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="Source\Parsing\ParserHelper.cs" /> <Compile Include="Source\Parsing\CommandLine.Parser.cs">
<Compile Include="Source\Parsing\ParserHelper.Test.cs"> <DependentUpon>CommandLine.cs</DependentUpon>
<DependentUpon>ParserHelper.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\ParallelBackgroundWorker.cs" />
<Compile Include="Source\PropertyChangedEventArgsHelper.cs" /> <Compile Include="Source\ParallelBackgroundWorker.Test.cs">
<Compile Include="Source\PropertyChangedEventArgsHelper.Test.cs"> <DependentUpon>ParallelBackgroundWorker.cs</DependentUpon>
<DependentUpon>PropertyChangedEventArgsHelper.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Parsing\ParserHelper.cs" />
<Compile Include="Source\AffineThreadPool.cs" /> <Compile Include="Source\Parsing\ParserHelper.Test.cs">
<Compile Include="Source\AffineThreadPool.Test.cs"> <DependentUpon>ParserHelper.cs</DependentUpon>
<DependentUpon>AffineThreadPool.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\PropertyChangedEventArgsHelper.cs" />
<Compile Include="Source\EnumHelper.cs" /> <Compile Include="Source\PropertyChangedEventArgsHelper.Test.cs">
<Compile Include="Source\EnumHelper.Test.cs"> <DependentUpon>PropertyChangedEventArgsHelper.cs</DependentUpon>
<DependentUpon>EnumHelper.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\AffineThreadPool.cs" />
<Compile Include="Source\Observable.cs" /> <Compile Include="Source\AffineThreadPool.Test.cs">
<Compile Include="Source\Observable.Test.cs"> <DependentUpon>AffineThreadPool.cs</DependentUpon>
<DependentUpon>Observable.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\EnumHelper.cs" />
<Compile Include="Source\ObservableHelper.cs" /> <Compile Include="Source\EnumHelper.Test.cs">
<Compile Include="Source\ObservableHelper.Test.cs"> <DependentUpon>EnumHelper.cs</DependentUpon>
<DependentUpon>ObservableHelper.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Observable.cs" />
<Compile Include="Source\TypeHelper.cs" /> <Compile Include="Source\Observable.Test.cs">
<Compile Include="Source\TypeHelper.Test.cs"> <DependentUpon>Observable.cs</DependentUpon>
<DependentUpon>TypeHelper.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\ObservableHelper.cs" />
<Compile Include="Source\FloatHelper.cs" /> <Compile Include="Source\ObservableHelper.Test.cs">
<Compile Include="Source\FloatHelper.Test.cs"> <DependentUpon>ObservableHelper.cs</DependentUpon>
<DependentUpon>FloatHelper.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\TypeHelper.cs" />
<Compile Include="Source\IntegerHelper.cs" /> <Compile Include="Source\TypeHelper.Test.cs">
<Compile Include="Source\IntegerHelper.Test.cs"> <DependentUpon>TypeHelper.cs</DependentUpon>
<DependentUpon>IntegerHelper.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\FloatHelper.cs" />
<Compile Include="Source\PathHelper.cs" /> <Compile Include="Source\FloatHelper.Test.cs">
<Compile Include="Source\PathHelper.Test.cs"> <DependentUpon>FloatHelper.cs</DependentUpon>
<DependentUpon>PathHelper.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\IntegerHelper.cs" />
<Compile Include="Source\Shared.cs" /> <Compile Include="Source\IntegerHelper.Test.cs">
<Compile Include="Source\Shared.Test.cs"> <DependentUpon>IntegerHelper.cs</DependentUpon>
<DependentUpon>Shared.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\PathHelper.cs" />
<Compile Include="Source\StringBuilderHelper.cs" /> <Compile Include="Source\PathHelper.Test.cs">
<Compile Include="Source\StringBuilderHelper.Test.cs"> <DependentUpon>PathHelper.cs</DependentUpon>
<DependentUpon>StringBuilderHelper.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\Shared.cs" />
<Compile Include="Source\StringHelper.cs" /> <Compile Include="Source\Shared.Test.cs">
<Compile Include="Source\StringHelper.Test.cs"> <DependentUpon>Shared.cs</DependentUpon>
<DependentUpon>StringHelper.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\StringBuilderHelper.cs" />
<Compile Include="Source\StringSegment.cs" /> <Compile Include="Source\StringBuilderHelper.Test.cs">
<Compile Include="Source\StringSegment.Test.cs"> <DependentUpon>StringBuilderHelper.cs</DependentUpon>
<DependentUpon>StringSegment.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\StringHelper.cs" />
<Compile Include="Source\WeakReference.cs" /> <Compile Include="Source\StringHelper.Test.cs">
<Compile Include="Source\WeakReference.Test.cs"> <DependentUpon>StringHelper.cs</DependentUpon>
<DependentUpon>WeakReference.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\StringSegment.cs" />
<Compile Include="Source\XmlHelper.cs" /> <Compile Include="Source\StringSegment.Test.cs">
<Compile Include="Source\XmlHelper.Test.cs"> <DependentUpon>StringSegment.cs</DependentUpon>
<DependentUpon>XmlHelper.cs</DependentUpon> </Compile>
</Compile> <Compile Include="Source\WeakReference.cs" />
</ItemGroup> <Compile Include="Source\WeakReference.Test.cs">
<ItemGroup> <DependentUpon>WeakReference.cs</DependentUpon>
<None Include="..\Foundation.snk"> </Compile>
<Link>Foundation.snk</Link> <Compile Include="Source\XmlHelper.cs" />
</None> <Compile Include="Source\XmlHelper.Test.cs">
</ItemGroup> <DependentUpon>XmlHelper.cs</DependentUpon>
<ItemGroup> </Compile>
<Content Include="Documents\DoubleConverter.txt" /> </ItemGroup>
<Content Include="Documents\Nuclex.Support.txt" /> <ItemGroup>
<Content Include="Documents\Request Framework.txt" /> <None Include="..\Foundation.snk">
</ItemGroup> <Link>Foundation.snk</Link>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> </None>
</ItemGroup>
<ItemGroup>
<Content Include="Documents\DoubleConverter.txt" />
<Content Include="Documents\Nuclex.Support.txt" />
<Content Include="Documents\Request Framework.txt" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets. Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild"> <Target Name="BeforeBuild">
</Target> </Target>
<Target Name="AfterBuild"> <Target Name="AfterBuild">
</Target> </Target>
--> -->
</Project> </Project>

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

45
Source/Async/AsyncStatus.cs Executable file
View File

@ -0,0 +1,45 @@
#region CPL License
/*
Nuclex Framework
Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as
published by the IBM Corporation; either version 1.0 of the
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
IBM Common Public License for more details.
You should have received a copy of the IBM Common Public
License along with this library
*/
#endregion
using System;
namespace Nuclex.Support.Async {
/// <summary>Status of an <see cref="IAsyncTask" /></summary>
public enum AsyncStatus {
/// <summary>The process has not been started yet</summary>
NotStarted,
/// <summary>The process is currently executing</summary>
Running,
/// <summary>The process completed successfully</summary>
Succeeded,
/// <summary>The process encountered a problem</summary>
Failed,
/// <summary>The process was cancelled</summary>
Cancelled
}
} // namespace Nuclex.Support.Async

View File

@ -0,0 +1,69 @@
#region CPL License
/*
Nuclex Framework
Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as
published by the IBM Corporation; either version 1.0 of the
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
IBM Common Public License for more details.
You should have received a copy of the IBM Common Public
License along with this library
*/
#endregion
using System;
namespace Nuclex.Support.Async {
/// <summary>Provides the status of an <see cref="IAsyncTask" /></summary>
public class AsyncStatusEventArgs : EventArgs {
/// <summary>Reusable container that communicates that a task wasn't run</summary>
public static readonly AsyncStatusEventArgs NotStarted = new AsyncStatusEventArgs(
AsyncStatus.NotStarted
);
/// <summary>Reusable container that communicates that a task is running</summary>
public static readonly AsyncStatusEventArgs Running = new AsyncStatusEventArgs(
AsyncStatus.Running
);
/// <summary>Reusable container that communicates success</summary>
public static readonly AsyncStatusEventArgs Success = new AsyncStatusEventArgs(
AsyncStatus.Succeeded
);
/// <summary>Reusable container that communicates a failure</summary>
public static readonly AsyncStatusEventArgs Failure = new AsyncStatusEventArgs(
AsyncStatus.Failed
);
/// <summary>Reusable container that communicates a cancellation</summary>
public static readonly AsyncStatusEventArgs Cancel = new AsyncStatusEventArgs(
AsyncStatus.Cancelled
);
/// <summary>Initializes a new <see cref="IAsyncTask" /> outcome container</summary>
/// <param name="status">Outcome the container will provide</param>
public AsyncStatusEventArgs(AsyncStatus status) {
this.status = status;
}
/// <summary>The status of the <see cref="IAsyncTask" /></summary>
public AsyncStatus Status {
get { return this.status; }
}
/// <summary><see cref="IAsyncTask" /> status stored by the container</summary>
private AsyncStatus status;
}
} // namespace Nuclex.Support.Async

39
Source/Async/IAsyncAction.cs Executable file
View File

@ -0,0 +1,39 @@
#region CPL License
/*
Nuclex Framework
Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as
published by the IBM Corporation; either version 1.0 of the
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
IBM Common Public License for more details.
You should have received a copy of the IBM Common Public
License along with this library
*/
#endregion
using System;
namespace Nuclex.Support.Async {
/// <summary>Action that can be executed in the background</summary>
public interface IAsyncAction : IAsyncTask {
/// <summary>Executes the action</summary>
void Run();
#if false
/// <summary>Executes the action allowing cancellation via a cancellation token</summary>
/// <param name="cancellationToken">Cancellation token that can cancel the action</param>
void Run(CancellationToken cancellationToken);
#endif
}
} // namespace Nuclex.Support.Async

47
Source/Async/IAsyncSwitch.cs Executable file
View File

@ -0,0 +1,47 @@
#region CPL License
/*
Nuclex Framework
Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as
published by the IBM Corporation; either version 1.0 of the
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
IBM Common Public License for more details.
You should have received a copy of the IBM Common Public
License along with this library
*/
#endregion
using System;
namespace Nuclex.Support.Async {
/// <summary>State that can be switched in the background or externally</summary>
/// <typeparam name="TOptions">Options that can be switched asynchronously</typeparam>
public interface IAsyncSwitch<TOptions> : IAsyncTask {
/// <summary>Switches to a different option or configuration</summary>
/// <param name="option">Option or configuration to switch to</param>
void Switch(TOptions option);
#if false
/// <summary>Switches to a different option or configuration</summary>
/// <param name="option">Option or configuration to switch to</param>
/// <param name="cancellationToken">
/// Cancellation token by which the switch can be cancelled
/// </param>
void Switch(TOptions option, CancellationToken cancellationToken);
#endif
/// <summary>Current target option or configuration being switched to</summary>
TOptions Target { get; }
}
} // namespace Nuclex.Support.Async

39
Source/Async/IAsyncTask.cs Executable file
View File

@ -0,0 +1,39 @@
#region CPL License
/*
Nuclex Framework
Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as
published by the IBM Corporation; either version 1.0 of the
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
IBM Common Public License for more details.
You should have received a copy of the IBM Common Public
License along with this library
*/
#endregion
using System;
namespace Nuclex.Support.Async {
/// <summary>Task that runs in the background or externally</summary>
public interface IAsyncTask {
/// <summary>Triggered when the process starts running</summary>
event EventHandler Started;
/// <summary>Triggered when the action finishes for any reason</summary>
event EventHandler Finished;
/// <summary>Whether the action is currently running</summary>
bool IsRunning { get; }
}
} // namespace Nuclex.Support.Async

35
Source/Async/ICancellable.cs Executable file
View File

@ -0,0 +1,35 @@
#region CPL License
/*
Nuclex Framework
Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as
published by the IBM Corporation; either version 1.0 of the
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
IBM Common Public License for more details.
You should have received a copy of the IBM Common Public
License along with this library
*/
#endregion
using System;
namespace Nuclex.Support.Async {
/// <summary>
/// Can be implemented by an <see cref="IAsyncTask" /> to support cancellation
/// </summary>
public interface ICancellable {
/// <summary>Cancels the asynchronous action if it is running</summary>
void Cancel();
}
} // namespace Nuclex.Support.Async

45
Source/Async/IProgressSource.cs Executable file
View File

@ -0,0 +1,45 @@
#region CPL License
/*
Nuclex Framework
Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as
published by the IBM Corporation; either version 1.0 of the
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
IBM Common Public License for more details.
You should have received a copy of the IBM Common Public
License along with this library
*/
#endregion
using System;
namespace Nuclex.Support.Async {
/// <summary>Provides progress reports for an <see cref="IAsyncTask" /></summary>
public interface IProgressSource {
/// <summary>Called when the asynchronous action has made progress</summary>
event EventHandler ProgressUpdated;
/// <summary>Current progress of the asynchronous action</summary>
float Progress { get; }
}
/// <summary>Provides progress reports with a status message</summary>
/// <typeparam name="TStatus">Type of status message the progress source provides</typeparam>
public interface IProgressSource<TStatus> : IProgressSource {
/// <summary>Current status of the asynchronous action</summary>
TStatus Status { get; }
}
} // namespace Nuclex.Support.Async

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Native Framework Nuclex Native Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

View File

@ -1,7 +1,7 @@
#region CPL License #region CPL License
/* /*
Nuclex Framework Nuclex Framework
Copyright (C) 2002-2014 Nuclex Development Labs Copyright (C) 2002-2017 Nuclex Development Labs
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the IBM Common Public License as modify it under the terms of the IBM Common Public License as

Some files were not shown because too many files have changed in this diff Show More