Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / NetFx35 / System.ServiceModel.Web / System / ServiceModel / Dispatcher / UriTemplateDispatchFormatter.cs / 1 / UriTemplateDispatchFormatter.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- #pragma warning disable 1634, 1691 namespace System.ServiceModel.Dispatcher { using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Globalization; using System.Reflection; using System.ServiceModel; using System.ServiceModel.Channels; using System.ServiceModel.Description; using System.ServiceModel.Diagnostics; using System.Text; using System.Web; using System.Xml; using System.ServiceModel.Web; using System.Diagnostics; class UriTemplateDispatchFormatter : IDispatchMessageFormatter { internal DictionarypathMapping; internal Dictionary > queryMapping; Uri baseAddress; IDispatchMessageFormatter inner; string operationName; QueryStringConverter qsc; int totalNumUTVars; UriTemplate uriTemplate; public UriTemplateDispatchFormatter(OperationDescription operationDescription, IDispatchMessageFormatter inner, QueryStringConverter qsc, string contractName, Uri baseAddress) { this.inner = inner; this.qsc = qsc; this.baseAddress = baseAddress; this.operationName = operationDescription.Name; UriTemplateClientFormatter.Populate(out this.pathMapping, out this.queryMapping, out this.totalNumUTVars, out this.uriTemplate, operationDescription, qsc, contractName); } public void DeserializeRequest(Message message, object[] parameters) { object[] innerParameters = new object[parameters.Length - this.totalNumUTVars]; if (innerParameters.Length != 0) { this.inner.DeserializeRequest(message, innerParameters); } int j = 0; UriTemplateMatch utmr = null; string UTMRName = IncomingWebRequestContext.UriTemplateMatchResultsPropertyName; if (message.Properties.ContainsKey(UTMRName)) { utmr = message.Properties[UTMRName] as UriTemplateMatch; } else { if (message.Headers.To != null && message.Headers.To.IsAbsoluteUri) { utmr = this.uriTemplate.Match(this.baseAddress, message.Headers.To); } } NameValueCollection nvc = (utmr == null) ? new NameValueCollection() : utmr.BoundVariables; for (int i = 0; i < parameters.Length; ++i) { if (this.pathMapping.ContainsKey(i) && utmr != null) { parameters[i] = nvc[this.pathMapping[i]]; } else if (this.queryMapping.ContainsKey(i) && utmr != null) { string queryVal = nvc[this.queryMapping[i].Key]; parameters[i] = this.qsc.ConvertStringToValue(queryVal, this.queryMapping[i].Value); } else { parameters[i] = innerParameters[j]; ++j; } } if (DiagnosticUtility.ShouldTraceInformation) { if (utmr != null) { foreach (string key in utmr.QueryParameters.Keys) { bool isParameterIgnored = true; foreach (KeyValuePair kvp in this.queryMapping.Values) { if (String.Compare(key, kvp.Key, StringComparison.OrdinalIgnoreCase) == 0) { isParameterIgnored = false; break; } } if (isParameterIgnored) { DiagnosticUtility.DiagnosticTrace.TraceEvent(TraceEventType.Information, TraceCode.WebUnknownQueryParameterIgnored, SR2.GetString(SR2.TraceCodeWebRequestUnknownQueryParameterIgnored, key, operationName)); } } } } } public Message SerializeReply(MessageVersion messageVersion, object[] parameters, object result) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotSupportedException(SR2.GetString(SR2.QueryStringFormatterOperationNotSupportedServerSide))); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CriticalExceptions.cs
- APCustomTypeDescriptor.cs
- MD5Cng.cs
- MDIClient.cs
- XComponentModel.cs
- ClientUriBehavior.cs
- PathGeometry.cs
- ReadOnlyDataSource.cs
- AutomationIdentifier.cs
- SchemaImporterExtensionElementCollection.cs
- InitializationEventAttribute.cs
- WindowsToolbarAsMenu.cs
- ScrollPattern.cs
- ParallelDesigner.cs
- ListViewGroupCollectionEditor.cs
- TextEditor.cs
- Rect.cs
- DbProviderServices.cs
- GlyphRunDrawing.cs
- PropertyDescriptorComparer.cs
- PersonalizationAdministration.cs
- SafeNativeMethods.cs
- TableSectionStyle.cs
- VirtualPathData.cs
- SharedPerformanceCounter.cs
- ResXBuildProvider.cs
- DebugInfo.cs
- XsltQilFactory.cs
- ExecutionEngineException.cs
- SubpageParagraph.cs
- CachedBitmap.cs
- EntityDataSourceMemberPath.cs
- BindingObserver.cs
- ContractHandle.cs
- RadioButtonAutomationPeer.cs
- InputReferenceExpression.cs
- EntityProxyFactory.cs
- ArrayWithOffset.cs
- ScriptResourceInfo.cs
- GridView.cs
- UserPersonalizationStateInfo.cs
- WindowsFormsSectionHandler.cs
- Annotation.cs
- StringUtil.cs
- TableSectionStyle.cs
- WebEventTraceProvider.cs
- TypeDelegator.cs
- ListArgumentProvider.cs
- XmlSchemaProviderAttribute.cs
- DesignerForm.cs
- Compress.cs
- NativeMethods.cs
- CustomAttribute.cs
- Underline.cs
- CheckPair.cs
- EastAsianLunisolarCalendar.cs
- DependsOnAttribute.cs
- _ScatterGatherBuffers.cs
- HttpEncoder.cs
- AuthenticationSection.cs
- HttpDictionary.cs
- Timer.cs
- DefaultIfEmptyQueryOperator.cs
- CellPartitioner.cs
- Propagator.cs
- IUnknownConstantAttribute.cs
- Matrix3DValueSerializer.cs
- PropertyDescriptorGridEntry.cs
- WrappedReader.cs
- SessionIDManager.cs
- BufferedGraphicsManager.cs
- DecoderFallbackWithFailureFlag.cs
- Viewport3DAutomationPeer.cs
- DbCommandDefinition.cs
- ModifierKeysValueSerializer.cs
- AssociationTypeEmitter.cs
- StatusBar.cs
- View.cs
- AnonymousIdentificationSection.cs
- DataSourceCache.cs
- MutexSecurity.cs
- StatusBar.cs
- GradientStop.cs
- EventLogPermissionEntry.cs
- ProcessModule.cs
- x509utils.cs
- WebBrowserPermission.cs
- PropertyNames.cs
- EntityClassGenerator.cs
- CodePrimitiveExpression.cs
- MailWebEventProvider.cs
- XmlCompatibilityReader.cs
- CqlBlock.cs
- RoleGroupCollection.cs
- SoapElementAttribute.cs
- FormViewModeEventArgs.cs
- WebServiceReceive.cs
- AtlasWeb.Designer.cs
- DeriveBytes.cs
- UnsignedPublishLicense.cs