Changed license to Apache License 2.0

This commit is contained in:
cygon 2024-06-13 18:36:21 +02:00
parent d3bf0be9d7
commit 52dc3d3708
144 changed files with 32422 additions and 32544 deletions

View File

@ -1,4 +1,23 @@
using System.Reflection; #region Apache License 2.0
/*
Nuclex .NET Framework
Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#endregion // Apache License 2.0
using System.Reflection;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
@ -9,7 +28,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyProduct("Nuclex.Support")] [assembly: AssemblyProduct("Nuclex.Support")]
[assembly: AssemblyDescription("")] [assembly: AssemblyDescription("")]
[assembly: AssemblyCompany("Nuclex Development Labs")] [assembly: AssemblyCompany("Nuclex Development Labs")]
[assembly: AssemblyCopyright("Copyright © Nuclex Development Labs 2008-2017")] [assembly: AssemblyCopyright("Copyright © Markus Ewald / Nuclex Development Labs 2002-2024")]
[assembly: AssemblyTrademark("")] [assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")] [assembly: AssemblyCulture("")]

27
Source/Async/AsyncStatus.cs Executable file → Normal file
View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;

27
Source/Async/AsyncStatusEventArgs.cs Executable file → Normal file
View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;

27
Source/Async/IAsyncAction.cs Executable file → Normal file
View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Threading; using System.Threading;

27
Source/Async/IAsyncSwitch.cs Executable file → Normal file
View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Threading; using System.Threading;

27
Source/Async/IAsyncTask.cs Executable file → Normal file
View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;

27
Source/Async/ICancellable.cs Executable file → Normal file
View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;

27
Source/Async/IProgressSource.cs Executable file → Normal file
View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if UNITTEST #if UNITTEST

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if !NO_SETS #if !NO_SETS

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if !NO_SETS #if !NO_SETS

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if !NO_SETS #if !NO_SETS

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if !NO_SETS #if !NO_SETS

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if UNITTEST #if UNITTEST

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Reflection; using System.Reflection;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if UNITTEST #if UNITTEST

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.IO; using System.IO;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if UNITTEST #if UNITTEST

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
#if !NO_SPECIALIZED_COLLECTIONS #if !NO_SPECIALIZED_COLLECTIONS

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if UNITTEST #if UNITTEST

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections; using System.Collections;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if UNITTEST #if UNITTEST

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if UNITTEST #if UNITTEST

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections; using System.Collections;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if UNITTEST #if UNITTEST

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections; using System.Collections;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if !NO_NMOCK #if !NO_NMOCK

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections; using System.Collections;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if !NO_NMOCK #if !NO_NMOCK

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections; using System.Collections;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if !NO_NMOCK #if !NO_NMOCK

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections; using System.Collections;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if !NO_SETS #if !NO_SETS

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections.ObjectModel; using System.Collections.ObjectModel;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if UNITTEST #if UNITTEST

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if UNITTEST #if UNITTEST

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Text; using System.Text;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections; using System.Collections;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections; using System.Collections;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if UNITTEST #if UNITTEST

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections; using System.Collections;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections; using System.Collections;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if !NO_SETS #if !NO_SETS

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections; using System.Collections;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections; using System.Collections;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Threading; using System.Threading;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if !NO_NMOCK #if !NO_NMOCK

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections; using System.Collections;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if !NO_SETS #if !NO_SETS

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Native Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion // CPL License #endregion // Apache License 2.0
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Threading; using System.Threading;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections; using System.Collections;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections; using System.Collections;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if UNITTEST #if UNITTEST

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if UNITTEST #if UNITTEST

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if UNITTEST #if UNITTEST

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Diagnostics; using System.Diagnostics;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if UNITTEST #if UNITTEST

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.IO; using System.IO;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.IO; using System.IO;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.IO; using System.IO;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if UNITTEST #if UNITTEST

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections; using System.Collections;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.Collections; using System.Collections;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if UNITTEST #if UNITTEST

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
using System; using System;
using System.ComponentModel; using System.ComponentModel;

View File

@ -1,22 +1,21 @@
#region CPL License #region Apache License 2.0
/* /*
Nuclex Framework Nuclex .NET Framework
Copyright (C) 2002-2017 Nuclex Development Labs Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
This library is free software; you can redistribute it and/or Licensed under the Apache License, Version 2.0 (the "License");
modify it under the terms of the IBM Common Public License as you may not use this file except in compliance with the License.
published by the IBM Corporation; either version 1.0 of the You may obtain a copy of the License at
License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, http://www.apache.org/licenses/LICENSE-2.0
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 Unless required by applicable law or agreed to in writing, software
License along with this library distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ */
#endregion #endregion // Apache License 2.0
#if UNITTEST #if UNITTEST

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