5 writes to TypeName
System.Web.Services (5)
System\Web\Services\Description\HttpProtocolImporter.cs (1)
71importedReturn.TypeName = typeof(void).FullName;
System\Web\Services\Description\MimeAnyImporter.cs (1)
23importedReturn.TypeName = typeof(Stream).FullName;
System\Web\Services\Description\MimeTextImporter.cs (1)
38importedReturn.TypeName = ImportContext.ClassNames.AddUnique(methodName + "Matches", mimeTextBinding);
System\Web\Services\Description\MimeXmlImporter.cs (2)
39importedReturn.TypeName = typeof(XmlElement).FullName; 64importedReturn.TypeName = importedReturn.TypeMapping.TypeFullName;
7 references to TypeName
System.Web.Services (7)
System\Web\Services\Description\HttpProtocolImporter.cs (6)
159method.MimeReturn.TypeName, metadata, 180mainCodeMethod.Statements.Add(new CodeMethodReturnStatement(new CodeCastExpression(method.MimeReturn.TypeName, invoke))); 216method.MimeReturn.TypeName, metadata, CodeFlags.IsPublic); 222endCodeMethod.Statements.Add(new CodeMethodReturnStatement(new CodeCastExpression(method.MimeReturn.TypeName, invoke))); 231string methodKey = MethodSignature(uniqueMethodName, method.MimeReturn.TypeName, new CodeFlags[parameterTypeNames.Length], parameterTypeNames); 271ExtraCodeClasses.Add(WebCodeGenerator.CreateArgsClass(delegateInfo.handlerArgs, new string[] { method.MimeReturn.TypeName }, new string[] { "Result" },
System\Web\Services\Description\MimeTextImporter.cs (1)
53GenerateCode(importedReturn.TypeName, importedReturn.TextBinding.Matches, options);