1 type derived from WebServiceTypeData
System.Web.Extensions (1)
Script\Services\WebServiceEnumData.cs (1)
12internal class WebServiceEnumData : WebServiceTypeData {
4 instantiations of WebServiceTypeData
System.Web.Extensions (4)
Script\Services\WebServiceData.cs (2)
172: this(new WebServiceTypeData(type.Name, type.Namespace, type)) { 421_clientTypesDictionary[typeStringRepresentation] = new WebServiceTypeData(t.Name, t.Namespace, t);
Script\Services\WebServiceTypeData.cs (2)
225knownTypeData = new WebServiceTypeData(XmlConvert.DecodeName(schemaType.Name), schemaTargetNamespace); 248typeData = new WebServiceTypeData(XmlConvert.DecodeName(qname.Name), XmlConvert.DecodeName(qname.Namespace));
28 references to WebServiceTypeData
System.Web.Extensions (28)
Script\Services\ClientProxyGenerator.cs (1)
318foreach (WebServiceTypeData t in data.ClientTypes) {
Script\Services\WebServiceData.cs (20)
27private WebServiceTypeData _typeData; 33private Dictionary<string, WebServiceTypeData> _clientTypesDictionary; 159private WebServiceData(WebServiceTypeData typeData) { 184internal WebServiceData(WebServiceTypeData typeData, Dictionary<string, WebServiceMethodData> methods) 239internal WebServiceTypeData TypeData { 254internal void Initialize(WebServiceTypeData typeData, Dictionary<string, WebServiceMethodData> methods) { 255Dictionary<string, WebServiceTypeData> clientTypeDictionary = new Dictionary<string, WebServiceTypeData>(); 295_clientTypesDictionary = new Dictionary<string, WebServiceTypeData>(); 378enumData = (WebServiceEnumData)WebServiceTypeData.GetWebServiceTypeData(t); 431WebServiceTypeData typeData = WebServiceTypeData.GetWebServiceTypeData(t); 447IList<WebServiceTypeData> knownTypes = WebServiceTypeData.GetKnownTypes(t, typeData); 448foreach (WebServiceTypeData knownType in knownTypes) { 456private bool ProcessTypeData(WebServiceTypeData typeData) { 475internal IEnumerable<WebServiceTypeData> ClientTypes { 481internal Dictionary<string, WebServiceTypeData> ClientTypeDictionary { 516WebServiceTypeData type = null; 552internal string GetTypeStringRepresentation(WebServiceTypeData typeData) {
Script\Services\WebServiceTypeData.cs (7)
199internal static List<WebServiceTypeData> GetKnownTypes(Type type, WebServiceTypeData typeData) { 200List<WebServiceTypeData> knownTypes = new List<WebServiceTypeData>(); 216WebServiceTypeData knownTypeData = null; 237internal static WebServiceTypeData GetWebServiceTypeData(Type type) { 239WebServiceTypeData typeData = null;