Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Def/Internal/TextLogic/TelemetryComplexProperty.cs')
-rw-r--r--src/Text/Def/Internal/TextLogic/TelemetryComplexProperty.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/Text/Def/Internal/TextLogic/TelemetryComplexProperty.cs b/src/Text/Def/Internal/TextLogic/TelemetryComplexProperty.cs
new file mode 100644
index 0000000..fe35096
--- /dev/null
+++ b/src/Text/Def/Internal/TextLogic/TelemetryComplexProperty.cs
@@ -0,0 +1,23 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for license information.
+//
+// This file contain internal APIs that are subject to change without notice.
+// Use at your own risk.
+//
+
+namespace Microsoft.VisualStudio.Text.Utilities
+{
+ /// <summary>
+ /// Allows code in VS-Platform to use complex telemetry properties, which reduce boilerplate code.
+ /// </summary>
+ public class TelemetryComplexProperty
+ {
+ public object Property { get; }
+
+ public TelemetryComplexProperty(object property)
+ {
+ Property = property;
+ }
+ }
+}