using System.Collections.Generic; namespace Microsoft.AspNetCore.Sockets { public class ConnectionMetadata { private IDictionary _metadata = new Dictionary(); public Format Format { get; set; } = Format.Text; public object this[string key] { get { return _metadata[key]; } set { _metadata[key] = value; } } } }