Home
last modified time | relevance | path

Searched refs:ClrType (Results 1 – 6 of 6) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DGeneratedClrTypeInfo.cs49 public Type ClrType { get; private set; } property in Google.Protobuf.Reflection.GeneratedClrTypeInfo
89 ClrType = clrType; in GeneratedClrTypeInfo()
DMessageDescriptor.cs68 ClrType = generatedCodeInfo?.ClrType; in MessageDescriptor()
135 public Type ClrType { get; } property in Google.Protobuf.Reflection.MessageDescriptor
DOneofDescriptor.cs108 var caseProperty = containingType.ClrType.GetProperty(clrName + "Case"); in CreateAccessor()
113 var clearMethod = containingType.ClrType.GetMethod("Clear" + clrName); in CreateAccessor()
DEnumDescriptor.cs78 public Type ClrType { get { return clrType; } } property in Google.Protobuf.Reflection.EnumDescriptor
DFieldDescriptor.cs333 var property = ContainingType.ClrType.GetProperty(propertyName); in CreateAccessor()
/external/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
DDescriptorsTest.cs66 Assert.AreSame(typeof(TestAllTypes), messageType.ClrType); in FileDescriptor()
234 Assert.IsNull(descriptor.ClrType); in MapEntryMessageDescriptor()