Home
last modified time | relevance | path

Searched refs:ForNull (Results 1 – 5 of 5) sorted by relevance

/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DValuePartial.cs72 public static Value ForNull() in ForNull() method in Google.Protobuf.WellKnownTypes.Value
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
DJsonParserTest.cs131 var message = new TestWellKnownTypes { ValueField = Value.ForNull() }; in SingularWrappers_ExplicitNulls()
165 Assert.AreEqual(new TestWellKnownTypes { ValueField = Value.ForNull() }, message); in ExplicitNullValue()
703 … var expected = Value.ForList(Value.ForString("x"), Value.ForNull(), Value.ForString("y")); in Value_List_WithNullElement()
711 var expected = Value.ForStruct(new Struct { Fields = { { "x", Value.ForNull() } } }); in StructValue_NullElement()
DJsonFormatterTest.cs522 { "a", Value.ForNull() }, in StructSample()
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/
DJsonParserTest.cs129 var message = new TestWellKnownTypes { ValueField = Value.ForNull() }; in SingularWrappers_ExplicitNulls()
163 Assert.AreEqual(new TestWellKnownTypes { ValueField = Value.ForNull() }, message); in ExplicitNullValue()
/third_party/protobuf/csharp/src/Google.Protobuf/
DJsonParser.cs335 return Value.ForNull(); in ParseSingleValue()