4 instantiations of FieldModel
dotnet-svcutil-lib (4)
FrameworkFork\Microsoft.Xml\Xml\Serialization\Models.cs (2)
211return new FieldModel(fieldInfo, fieldInfo.FieldType, typeDesc); 224return new FieldModel(propertyInfo, propertyInfo.PropertyType, typeDesc);
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapReflectionImporter.cs (1)
683FieldModel model = new FieldModel(xmlReflectionMember.MemberName, xmlReflectionMember.MemberType, _typeScope.GetTypeDesc(xmlReflectionMember.MemberType), checkSpecified, false);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionImporter.cs (1)
1375FieldModel model = new FieldModel(xmlReflectionMember.MemberName, xmlReflectionMember.MemberType, _typeScope.GetTypeDesc(xmlReflectionMember.MemberType), checkSpecified, false);
14 references to FieldModel
dotnet-svcutil-lib (14)
FrameworkFork\Microsoft.Xml\Xml\Serialization\Models.cs (4)
170internal FieldModel GetFieldModel(MemberInfo memberInfo) 172FieldModel model = null; 201private FieldModel GetFieldModel(FieldInfo fieldInfo) 214private FieldModel GetPropertyModel(PropertyInfo propertyInfo)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapReflectionImporter.cs (4)
422FieldModel fieldModel = model.GetFieldModel(memberInfo); 683FieldModel model = new FieldModel(xmlReflectionMember.MemberName, xmlReflectionMember.MemberType, _typeScope.GetTypeDesc(xmlReflectionMember.MemberType), checkSpecified, false); 693private MemberMapping ImportFieldMapping(FieldModel model, SoapAttributes a, string ns, RecursionLimiter limiter) 709private void ImportAccessorMapping(MemberMapping accessor, FieldModel model, SoapAttributes a, string ns, XmlSchemaForm form, RecursionLimiter limiter)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionImporter.cs (6)
378private Exception CreateMemberReflectionException(FieldModel model, Exception e) 854FieldModel fieldModel = model.GetFieldModel(memberInfo); 1375FieldModel model = new FieldModel(xmlReflectionMember.MemberName, xmlReflectionMember.MemberType, _typeScope.GetTypeDesc(xmlReflectionMember.MemberType), checkSpecified, false); 1399private MemberMapping ImportFieldMapping(StructModel parent, FieldModel model, XmlAttributes a, string ns, RecursionLimiter limiter) 1479FieldModel member = structModel.GetFieldModel(infos[0]); 1515private void ImportAccessorMapping(MemberMapping accessor, FieldModel model, XmlAttributes a, string ns, Type choiceIdentifierType, bool rpc, bool openModel, RecursionLimiter limiter)