private void PopulateSixContextProperties(ContextPropertiesBase context) { context["Key1"] = _fixture.Create("value1"); context["Key2"] = _fixture.Create <int>(); context["Key3"] = _fixture.Create <ComplexType>(); context["Key4"] = _fixture.Create <FixedComplexType>(); context["Key5"] = null; context["Key6"] = _fixture.Create("value1"); }
/// <summary> /// Internal constructor /// </summary> /// <remarks> /// <para> /// Initializes a new instance of the <see cref="ThreadContextStacks" /> class. /// </para> /// </remarks> internal ThreadContextStacks(ContextPropertiesBase properties) { m_properties = properties; }