1 write to MimeReturn
System.Web.Services (1)
System\Web\Services\Description\HttpProtocolImporter.cs (1)
321method.MimeReturn = ImportMimeReturn();
13 references to MimeReturn
System.Web.Services (13)
System\Web\Services\Description\HttpProtocolImporter.cs (13)
143if (method.MimeReturn.ReaderType == null) { 147formatterTypes[0] = new CodeTypeOfExpression(method.MimeReturn.ReaderType.FullName); 159method.MimeReturn.TypeName, metadata, 162AppendMetadata(method.MimeReturn.Attributes, mainCodeMethod.ReturnTypeCustomAttributes); 179if (method.MimeReturn.ReaderType != null) { 180mainCodeMethod.Statements.Add(new CodeMethodReturnStatement(new CodeCastExpression(method.MimeReturn.TypeName, invoke))); 216method.MimeReturn.TypeName, metadata, CodeFlags.IsPublic); 221if (method.MimeReturn.ReaderType != null) { 222endCodeMethod.Statements.Add(new CodeMethodReturnStatement(new CodeCastExpression(method.MimeReturn.TypeName, invoke))); 231string methodKey = MethodSignature(uniqueMethodName, method.MimeReturn.TypeName, new CodeFlags[parameterTypeNames.Length], parameterTypeNames); 264bool methodHasReturn = method.MimeReturn.ReaderType != null; 271ExtraCodeClasses.Add(WebCodeGenerator.CreateArgsClass(delegateInfo.handlerArgs, new string[] { method.MimeReturn.TypeName }, new string[] { "Result" }, 322if (method.MimeReturn == null) {