Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Web / System / Web / Services / Protocols / XmlReturnReader.cs / 1305376 / XmlReturnReader.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Services.Protocols { using System.IO; using System; using System.Xml.Serialization; using System.Reflection; using System.Collections; using System.Web.Services; using System.Net; using System.Text; using System.Security.Policy; using System.Security; using System.Security.Permissions; using System.Web.Services.Diagnostics; internal class XmlReturn { private XmlReturn() { } internal static object[] GetInitializers(LogicalMethodInfo[] methodInfos) { if (methodInfos.Length == 0) return new object[0]; WebServiceAttribute serviceAttribute = WebServiceReflector.GetAttribute(methodInfos); bool serviceDefaultIsEncoded = SoapReflector.ServiceDefaultIsEncoded(WebServiceReflector.GetMostDerivedType(methodInfos)); XmlReflectionImporter importer = SoapReflector.CreateXmlImporter(serviceAttribute.Namespace, serviceDefaultIsEncoded); WebMethodReflector.IncludeTypes(methodInfos, importer); ArrayList mappings = new ArrayList(); bool[] supported = new bool[methodInfos.Length]; for (int i = 0; i < methodInfos.Length; i++) { LogicalMethodInfo methodInfo = methodInfos[i]; Type type = methodInfo.ReturnType; if (IsSupported(type) && HttpServerProtocol.AreUrlParametersSupported(methodInfo)) { XmlAttributes a = new XmlAttributes(methodInfo.ReturnTypeCustomAttributeProvider); XmlTypeMapping mapping = importer.ImportTypeMapping(type, a.XmlRoot); mapping.SetKey(methodInfo.GetKey() + ":Return"); mappings.Add(mapping); supported[i] = true; } } if (mappings.Count == 0) return new object[0]; XmlMapping[] xmlMappings = (XmlMapping[])mappings.ToArray(typeof(XmlMapping)); Evidence evidence = GetEvidenceForType(methodInfos[0].DeclaringType); TraceMethod caller = Tracing.On ? new TraceMethod(typeof(XmlReturn), "GetInitializers", methodInfos) : null; if (Tracing.On) Tracing.Enter(Tracing.TraceId(Res.TraceCreateSerializer), caller, new TraceMethod(typeof(XmlSerializer), "FromMappings", xmlMappings, evidence)); XmlSerializer[] serializers = null; if (AppDomain.CurrentDomain.IsHomogenous) { serializers = XmlSerializer.FromMappings(xmlMappings); } else { #pragma warning disable 618 // If we're in a non-homogenous domain, legacy CAS mode is enabled, so passing through evidence will not fail serializers = XmlSerializer.FromMappings(xmlMappings, evidence); #pragma warning restore 618 } if (Tracing.On) Tracing.Exit(Tracing.TraceId(Res.TraceCreateSerializer), caller); object[] initializers = new object[methodInfos.Length]; int count = 0; for (int i = 0; i < initializers.Length; i++) { if (supported[i]) { initializers[i] = serializers[count++]; } } return initializers; } static bool IsSupported(Type returnType) { return returnType != typeof(void); } internal static object GetInitializer(LogicalMethodInfo methodInfo) { return GetInitializers(new LogicalMethodInfo[] { methodInfo }); } // Asserts full-trust permission-set. // Reason: Assembly.Evidence demands SecurityPermission and/or other permissions. // Justification: The type returned is only used to get the GetInitializers method. [PermissionSet(SecurityAction.Assert, Unrestricted = true)] static Evidence GetEvidenceForType(Type type) { return type.Assembly.Evidence; } } ///public class XmlReturnReader : MimeReturnReader { XmlSerializer xmlSerializer; /// public override void Initialize(object o) { xmlSerializer = (XmlSerializer)o; } /// public override object[] GetInitializers(LogicalMethodInfo[] methodInfos) { return XmlReturn.GetInitializers(methodInfos); } /// public override object GetInitializer(LogicalMethodInfo methodInfo) { return XmlReturn.GetInitializer(methodInfo); } /// public override object Read(WebResponse response, Stream responseStream) { try { if (response == null) throw new ArgumentNullException("response"); if (!ContentType.MatchesBase(response.ContentType, ContentType.TextXml)) { throw new InvalidOperationException(Res.GetString(Res.WebResultNotXml)); } Encoding e = RequestResponseUtils.GetEncoding(response.ContentType); StreamReader reader = new StreamReader(responseStream, e, true); TraceMethod caller = Tracing.On ? new TraceMethod(this, "Read") : null; if (Tracing.On) Tracing.Enter(Tracing.TraceId(Res.TraceReadResponse), caller, new TraceMethod(xmlSerializer, "Deserialize", reader)); object returnValue = xmlSerializer.Deserialize(reader); if (Tracing.On) Tracing.Exit(Tracing.TraceId(Res.TraceReadResponse), caller); return returnValue; } finally { response.Close(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TimeEnumHelper.cs
- _PooledStream.cs
- UriParserTemplates.cs
- CrossSiteScriptingValidation.cs
- SchemaConstraints.cs
- BreakRecordTable.cs
- ListViewItemCollectionEditor.cs
- ParameterReplacerVisitor.cs
- TypeResolver.cs
- PackWebRequest.cs
- CounterCreationDataConverter.cs
- UnionExpr.cs
- UInt32Storage.cs
- TripleDES.cs
- ImageFormatConverter.cs
- ListViewAutomationPeer.cs
- _ContextAwareResult.cs
- Int32EqualityComparer.cs
- PackageStore.cs
- SQlBooleanStorage.cs
- ReverseInheritProperty.cs
- SqlBinder.cs
- DES.cs
- ISessionStateStore.cs
- ReaderWriterLockWrapper.cs
- MethodInfo.cs
- OracleInfoMessageEventArgs.cs
- InvalidPrinterException.cs
- AnalyzedTree.cs
- RegexParser.cs
- CAGDesigner.cs
- DoubleCollectionConverter.cs
- OletxVolatileEnlistment.cs
- InputScopeConverter.cs
- ConfigurationSchemaErrors.cs
- RecommendedAsConfigurableAttribute.cs
- SmiRequestExecutor.cs
- SpeechRecognizer.cs
- XmlDigitalSignatureProcessor.cs
- ToolStripDropDownItem.cs
- SqlFlattener.cs
- DBParameter.cs
- validation.cs
- Utils.cs
- ProfileGroupSettingsCollection.cs
- TreeViewItem.cs
- DataReaderContainer.cs
- DataSetSchema.cs
- VariableAction.cs
- WorkflowMarkupSerializationManager.cs
- Vector.cs
- TransformPatternIdentifiers.cs
- ParameterElementCollection.cs
- HtmlTitle.cs
- ThreadExceptionEvent.cs
- InheritanceRules.cs
- AnnotationStore.cs
- Socket.cs
- BrowserDefinition.cs
- ObjectItemCollection.cs
- DataTableReaderListener.cs
- AmbientLight.cs
- PrintPreviewControl.cs
- BookmarkManager.cs
- TraceRecords.cs
- CodeEventReferenceExpression.cs
- GroupItemAutomationPeer.cs
- NameService.cs
- ConfigXmlDocument.cs
- FontInfo.cs
- FilterQueryOptionExpression.cs
- HyperLinkColumn.cs
- SystemIPAddressInformation.cs
- SmtpFailedRecipientException.cs
- WinInetCache.cs
- BaseParagraph.cs
- SqlMethodCallConverter.cs
- TreeNodeStyleCollection.cs
- DbFunctionCommandTree.cs
- BrowserTree.cs
- PropertyChangeTracker.cs
- GridItemPatternIdentifiers.cs
- DefaultValueTypeConverter.cs
- GenericTypeParameterBuilder.cs
- LocalizableAttribute.cs
- OracleConnectionString.cs
- StrokeFIndices.cs
- TreeNodeCollection.cs
- TaskFileService.cs
- HtmlElementEventArgs.cs
- TypeRefElement.cs
- NameValueSectionHandler.cs
- RequestTimeoutManager.cs
- FloaterBaseParagraph.cs
- SizeAnimationClockResource.cs
- Panel.cs
- MultipartContentParser.cs
- SplashScreen.cs
- DataGridViewColumnStateChangedEventArgs.cs
- OperationCanceledException.cs