Skip to content

Commit b7c5600

Browse files
committed
Fix license headers
1 parent 24af1d9 commit b7c5600

File tree

121 files changed

+410
-56
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+410
-56
lines changed

.editorconfig

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
root=true
22

3-
[*.cs]
4-
trim_trailing_whitespace=true
5-
insert_final_newline=true
6-
73
[*]
84
charset = utf-8
95
indent_style = tab
106
indent_size = 4
117

8+
[*.cs]
9+
trim_trailing_whitespace=true
10+
insert_final_newline=true
11+
charset = utf-8
12+
1213
[*.cshtml]
1314
indent_style = tab
1415
indent_size = 4

.github/add-license-headers.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ script_path=$(dirname $(realpath -s $0))/../
33

44
function add_license () {
55
(find "$script_path" -name $1 | grep -v "/bin/" | grep -v "/obj/" )|while read fname; do
6-
line=$(sed -n '2p;3q' "$fname")
7-
if ! [[ "$line" == " * Licensed to Elasticsearch B.V. under one or more contributor" ]] ; then
6+
line=$(sed -n '1p;2q' "$fname")
7+
if ! [[ "$line" == "// Licensed to Elasticsearch B.V under one or more agreements." ]] ; then
88
# awk joins the header with the existing file, inserting a newline between them
99
awk '(NR>1 && FNR==1){print ""}1' "${script_path}.github/license-header.txt" "$fname" > "${fname}.new"
1010
mv "${fname}.new" "$fname"

benchmarks/Benchmarks/Program.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
using BenchmarkDotNet.Attributes;
26
using BenchmarkDotNet.Configs;
37
using BenchmarkDotNet.Reports;

benchmarks/Profiling/Program.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
using System;
26
using System.IO;
37
using System.Linq;

src/Elastic.Clients.Elasticsearch/Common/Configuration/ElasticsearchClientSettings.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
using System;
26
using System.Collections.Generic;
37
using System.ComponentModel;

src/Elastic.Clients.Elasticsearch/Common/Configuration/IElasticsearchClientSettings.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
using System;
26
using System.Collections.Generic;
37
using System.Reflection;

src/Elastic.Clients.Elasticsearch/Common/ElasticsearchClientProductRegistration.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
using System;
26
using Elastic.Transport;
37
using Elastic.Transport.Products.Elasticsearch;

src/Elastic.Clients.Elasticsearch/Common/Extensions/Extensions.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
using System;
26
using System.Collections.Concurrent;
37
using System.Collections.Generic;

src/Elastic.Clients.Elasticsearch/Common/ForAttribute.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
using System;
26

37
namespace Elastic.Clients.Elasticsearch

src/Elastic.Clients.Elasticsearch/Common/Infer/DocumentPath/DocumentPath.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
namespace Elastic.Clients.Elasticsearch
26
{
37
//public interface IDocumentPath

src/Elastic.Clients.Elasticsearch/Common/Infer/Field/Field.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
using System;
26
using System.Diagnostics;
37
using System.Globalization;

src/Elastic.Clients.Elasticsearch/Common/Infer/Field/FieldExpressionVisitor.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
//// Licensed to Elasticsearch B.V under one or more agreements.
26
//// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
37
//// See the LICENSE file in the project root for more information.

src/Elastic.Clients.Elasticsearch/Common/Infer/Field/FieldExtensions.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
namespace Elastic.Clients.Elasticsearch
26
{
37
//internal static class FieldExtensions

src/Elastic.Clients.Elasticsearch/Common/Infer/Field/FieldResolver.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
//using System;
26
//using System.Collections;
37
//using System.Collections.Concurrent;

src/Elastic.Clients.Elasticsearch/Common/Infer/Fields/FieldsDescriptor.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
namespace Elastic.Clients.Elasticsearch
26
{
37
//public class FieldsDescriptor<T> : DescriptorPromiseBase<FieldsDescriptor<T>, Fields>

src/Elastic.Clients.Elasticsearch/Common/Infer/Id/Id.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
using System;
26
using System.Diagnostics;
37
using System.Globalization;

src/Elastic.Clients.Elasticsearch/Common/Infer/Id/IdExtensions.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
namespace Elastic.Clients.Elasticsearch
26
{
37
//internal static class IdExtensions

src/Elastic.Clients.Elasticsearch/Common/Infer/Id/IdResolver.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
using System;
26
using System.Collections.Concurrent;
37
using System.Reflection;

src/Elastic.Clients.Elasticsearch/Common/Infer/IndexName/IndexNameExtensions.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
namespace Elastic.Clients.Elasticsearch
26
{
37
//public static class IndexNameExtensions

src/Elastic.Clients.Elasticsearch/Common/Infer/IndexName/IndexNameResolver.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
namespace Elastic.Clients.Elasticsearch
26
{
37
//public class IndexNameResolver

src/Elastic.Clients.Elasticsearch/Common/Infer/IndexUuid/IndexUuid.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
using System;
26
using Elastic.Transport;
37

src/Elastic.Clients.Elasticsearch/Common/Infer/Indices/IndicesExtensions.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
namespace Elastic.Clients.Elasticsearch
26
{
37
//public static class IndicesExtensions

src/Elastic.Clients.Elasticsearch/Common/Infer/Inferrer.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
using System;
26
using Elastic.Transport;
37
using System.Collections.Concurrent;

src/Elastic.Clients.Elasticsearch/Common/Infer/JoinFieldRouting/Routing.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
using System;
26
using System.Diagnostics;
37
using System.Globalization;

src/Elastic.Clients.Elasticsearch/Common/Infer/PropertyName/PropertyName.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
using System;
26
using System.Diagnostics;
37
using System.Linq.Expressions;

src/Elastic.Clients.Elasticsearch/Common/Infer/PropertyName/PropertyNameExtensions.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
namespace Elastic.Clients.Elasticsearch
26
{
37
//internal static class PropertyNameExtensions

src/Elastic.Clients.Elasticsearch/Common/Infer/RelationName/RelationName.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
namespace Elastic.Clients.Elasticsearch
26
{
37
//[DebuggerDisplay("{" + nameof(DebugDisplay) + ",nq}")]

src/Elastic.Clients.Elasticsearch/Common/Infer/RelationName/RelationNameExtensions.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
namespace Elastic.Clients.Elasticsearch
26
{
37
//internal static class RelationNameExtensions

src/Elastic.Clients.Elasticsearch/Common/Infer/RelationName/RelationNameResolver.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//// Licensed to Elasticsearch B.V under one or more agreements.
2-
//// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3-
//// See the LICENSE file in the project root for more information.
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
44

55
//using System;
66
//using System.Collections.Concurrent;

src/Elastic.Clients.Elasticsearch/Common/IsADictionaryBase.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
using System.Collections;
26
using System.Collections.Generic;
37
using System.Collections.ObjectModel;

src/Elastic.Clients.Elasticsearch/Common/MinimumShouldMatch.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
namespace Elastic.Clients.Elasticsearch
26
{
37
public class MinimumShouldMatch : Union<int?, string>

src/Elastic.Clients.Elasticsearch/Common/Query/QueryBase.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
using System;
26
using System.Text.Json.Serialization;
37

src/Elastic.Clients.Elasticsearch/Common/Request/ApiUrls.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
using System;
26
using System.Collections.Generic;
37
using System.Linq;

src/Elastic.Clients.Elasticsearch/Common/Request/RequestBase.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
using System;
26
using System.ComponentModel;
37
using System.Text.Json;

src/Elastic.Clients.Elasticsearch/Common/Request/RouteValues.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
using System;
26
using System.Collections.Generic;
37
using Elastic.Transport;

src/Elastic.Clients.Elasticsearch/Common/Static/Infer.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
using System;
26
using System.Collections.Generic;
37
using System.Linq;

src/Elastic.Clients.Elasticsearch/Common/TextToAnalyze.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
namespace Elastic.Clients.Elasticsearch.IndexManagement.Analyze
26
{
37
//public partial class TextToAnalyze

src/Elastic.Clients.Elasticsearch/FutureGenerated/DesignPrototype.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Licensed to Elasticsearch B.V under one or more agreements.
2+
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3+
// See the LICENSE file in the project root for more information.
4+
15
//// Licensed to Elasticsearch B.V under one or more agreements.
26
//// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
37
//// See the LICENSE file in the project root for more information.

src/Elastic.Clients.Elasticsearch/Helpers/BulkAllObserver.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
// Licensed to Elasticsearch B.V under one or more agreements.
1+
// Licensed to Elasticsearch B.V under one or more agreements.
22
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
33
// See the LICENSE file in the project root for more information.
44

5-
65
using System;
76
using System.Threading;
87

src/Elastic.Clients.Elasticsearch/Helpers/CoordinatedRequestDefaults.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
// Licensed to Elasticsearch B.V under one or more agreements.
1+
// Licensed to Elasticsearch B.V under one or more agreements.
22
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
33
// See the LICENSE file in the project root for more information.
44

5-
65
using System;
76

87
namespace Elastic.Clients.Elasticsearch.Helpers;

src/Elastic.Clients.Elasticsearch/Helpers/CoordinatedRequestObserverBase.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
// Licensed to Elasticsearch B.V under one or more agreements.
1+
// Licensed to Elasticsearch B.V under one or more agreements.
22
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
33
// See the LICENSE file in the project root for more information.
44

5-
65
using System;
76
using Elastic.Transport;
87

src/Elastic.Clients.Elasticsearch/Helpers/HelperIdentifiers.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
// Licensed to Elasticsearch B.V under one or more agreements.
1+
// Licensed to Elasticsearch B.V under one or more agreements.
22
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
33
// See the LICENSE file in the project root for more information.
44

5+
56
namespace Elastic.Clients.Elasticsearch.Helpers;
67

78
internal static class HelperIdentifiers

src/Elastic.Clients.Elasticsearch/Helpers/IHelperCallable.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
// Licensed to Elasticsearch B.V under one or more agreements.
1+
// Licensed to Elasticsearch B.V under one or more agreements.
22
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
33
// See the LICENSE file in the project root for more information.
44

5-
65
using Elastic.Transport;
76

87
namespace Elastic.Clients.Elasticsearch.Helpers;

src/Elastic.Clients.Elasticsearch/Helpers/PartitionHelper.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
// Licensed to Elasticsearch B.V under one or more agreements.
1+
// Licensed to Elasticsearch B.V under one or more agreements.
22
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
33
// See the LICENSE file in the project root for more information.
44

5-
65
using System.Collections;
76
using System.Collections.Generic;
87
using System.Linq;

src/Elastic.Clients.Elasticsearch/Helpers/ProducerConsumerBackPressure.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
// Licensed to Elasticsearch B.V under one or more agreements.
1+
// Licensed to Elasticsearch B.V under one or more agreements.
22
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
33
// See the LICENSE file in the project root for more information.
44

5-
65
using System;
76
using System.Threading;
87
using System.Threading.Tasks;

0 commit comments

Comments
 (0)