1 write to memberInfo
System.Web.Services (1)
System\Web\Services\Protocols\PatternMatcher.cs (1)
191member.memberInfo = memberInfo;
16 references to memberInfo
System.Web.Services (16)
System\Web\Services\Protocols\PatternMatcher.cs (16)
72if (memberInfo is FieldInfo) 73((FieldInfo)memberInfo).SetValue(target, matchType == null ? MatchString(text) : MatchClass(text)); 74else if (memberInfo is PropertyInfo) { 75((PropertyInfo)memberInfo).SetValue(target, matchType == null ? MatchString(text) : MatchClass(text), new object[0]); 81Type fieldType = memberInfo is FieldInfo ? ((FieldInfo)memberInfo).FieldType : ((PropertyInfo)memberInfo).PropertyType; 87throw BadGroupIndexException(group, memberInfo.Name, m.Groups.Count - 1); 100throw BadGroupIndexException(group, memberInfo.Name, m.Groups.Count - 1); 104throw BadCaptureIndexException(capture, memberInfo.Name, g.Captures.Count - 1); 115Type fieldType = memberInfo is FieldInfo ? ((FieldInfo)memberInfo).FieldType : ((PropertyInfo)memberInfo).PropertyType; 121throw BadGroupIndexException(group, memberInfo.Name, m.Groups.Count - 1); 134throw BadGroupIndexException(group, memberInfo.Name, m.Groups.Count - 1); 138throw BadCaptureIndexException(capture, memberInfo.Name, g.Captures.Count - 1);