コード例 #1
0
        /// <summary>
        /// Maps a <see cref="TelemetryEvent"/> to a <see cref="EventData"/> object.
        /// </summary>
        /// <param name="source">A telemetry event.</param>
        /// <returns>A <see cref="EventData"/> object.</returns>
        /// <exception cref="ArgumentNullException">
        /// <paramref name="source"/> must not be <c>null</c>.
        /// </exception>
        public static EventData Map(this TelemetryEvent source)
        {
            if (source == null)
            {
                throw new ArgumentNullException(nameof(source));
            }

            byte[] data = source.Serialize();

            return(new EventData(data));
        }