Encapsulates Internal information.
Inheritance: IJsonSerializable
Ejemplo n.º 1
0
        public void IpCanBeChangedByUserToSpecifyACustomValue()
        {
            var context = new InternalContext(new Dictionary <string, string>());

            context.SdkVersion = "0.0.11.00.1";
            Assert.Equal("0.0.11.00.1", context.SdkVersion);
        }
 public void IpCanBeChangedByUserToSpecifyACustomValue()
 {
     var context = new InternalContext(new Dictionary<string, string>());
     context.SdkVersion = "0.0.11.00.1";
     Assert.Equal("0.0.11.00.1", context.SdkVersion);
 }
 public void SdkVersionIsNullByDefaultToAvoidSendingItToEndpointUnnecessarily()
 {
     var context = new InternalContext(new Dictionary<string, string>());
     Assert.Null(context.SdkVersion);
 }
Ejemplo n.º 4
0
        public void SdkVersionIsNullByDefaultToAvoidSendingItToEndpointUnnecessarily()
        {
            var context = new InternalContext(new Dictionary <string, string>());

            Assert.Null(context.SdkVersion);
        }