Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / xsp / System / Web / Extensions / Script / Services / PageClientProxyGenerator.cs / 1 / PageClientProxyGenerator.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Script.Services { using System.Web; using System.Web.UI; internal class PageClientProxyGenerator : ClientProxyGenerator { private string _path; internal PageClientProxyGenerator(IPage page, bool debug) : this(page.Request.FilePath, debug) { } internal PageClientProxyGenerator(string path, bool debug) { _path = path; _debugMode = debug; } internal static string GetClientProxyScript(HttpContext context, IPage page, bool debug) { // Do nothing during unit tests which have no context or page if (context == null || page == null) return null; WebServiceData webServiceData = WebServiceData.GetWebServiceData(context, page.AppRelativeVirtualPath, false /*failIfNoData*/, true /*pageMethods */); if (webServiceData == null) return null; PageClientProxyGenerator proxyGenerator = new PageClientProxyGenerator(page, debug); return proxyGenerator.GetClientProxyScript(webServiceData); } protected override void GenerateTypeDeclaration(WebServiceData webServiceData, bool genClass) { if (genClass) { _builder.Append("PageMethods.prototype = "); } else { _builder.Append("var PageMethods = "); } } protected override string GetProxyTypeName(WebServiceData data) { return "PageMethods"; } protected override string GetProxyPath() { return _path; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Script.Services { using System.Web; using System.Web.UI; internal class PageClientProxyGenerator : ClientProxyGenerator { private string _path; internal PageClientProxyGenerator(IPage page, bool debug) : this(page.Request.FilePath, debug) { } internal PageClientProxyGenerator(string path, bool debug) { _path = path; _debugMode = debug; } internal static string GetClientProxyScript(HttpContext context, IPage page, bool debug) { // Do nothing during unit tests which have no context or page if (context == null || page == null) return null; WebServiceData webServiceData = WebServiceData.GetWebServiceData(context, page.AppRelativeVirtualPath, false /*failIfNoData*/, true /*pageMethods */); if (webServiceData == null) return null; PageClientProxyGenerator proxyGenerator = new PageClientProxyGenerator(page, debug); return proxyGenerator.GetClientProxyScript(webServiceData); } protected override void GenerateTypeDeclaration(WebServiceData webServiceData, bool genClass) { if (genClass) { _builder.Append("PageMethods.prototype = "); } else { _builder.Append("var PageMethods = "); } } protected override string GetProxyTypeName(WebServiceData data) { return "PageMethods"; } protected override string GetProxyPath() { return _path; } } } // 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
- QueryCacheEntry.cs
- HtmlButton.cs
- TableRowGroup.cs
- WindowsToolbarItemAsMenuItem.cs
- DocumentPageViewAutomationPeer.cs
- DataGridViewBand.cs
- StoreItemCollection.Loader.cs
- PresentationAppDomainManager.cs
- ReferenceEqualityComparer.cs
- DetailsViewRow.cs
- AlignmentXValidation.cs
- HttpFileCollection.cs
- CompilationSection.cs
- RIPEMD160Managed.cs
- CultureSpecificStringDictionary.cs
- UrlAuthFailedErrorFormatter.cs
- XmlQueryCardinality.cs
- XamlClipboardData.cs
- EdmSchemaAttribute.cs
- Scene3D.cs
- StrongTypingException.cs
- ProtocolViolationException.cs
- AttributeExtensions.cs
- MonitorWrapper.cs
- AxisAngleRotation3D.cs
- ObjectDataSourceChooseMethodsPanel.cs
- PrintPreviewDialog.cs
- DrawingGroup.cs
- Style.cs
- OptimizedTemplateContentHelper.cs
- TextParaClient.cs
- TimeSpanParse.cs
- DataBinding.cs
- ProxyWebPartManager.cs
- MessageFilter.cs
- ConnectionPointCookie.cs
- ColumnResult.cs
- OptimalTextSource.cs
- EncryptedType.cs
- DataGridViewTextBoxEditingControl.cs
- HTMLTextWriter.cs
- OpacityConverter.cs
- GPPOINTF.cs
- Binding.cs
- HttpRequestWrapper.cs
- BufferAllocator.cs
- Win32MouseDevice.cs
- XmlAnyAttributeAttribute.cs
- SafeProcessHandle.cs
- SynchronizedInputHelper.cs
- SafeNativeMethods.cs
- DesignerCalendarAdapter.cs
- Composition.cs
- DefaultIfEmptyQueryOperator.cs
- WeakEventManager.cs
- SchemaInfo.cs
- RSAPKCS1SignatureDeformatter.cs
- PropertyGroupDescription.cs
- GeometryModel3D.cs
- XmlSchemaFacet.cs
- XhtmlBasicValidationSummaryAdapter.cs
- SubqueryTrackingVisitor.cs
- ValidationResult.cs
- XPathNavigatorReader.cs
- HttpContextBase.cs
- Compiler.cs
- HierarchicalDataSourceDesigner.cs
- DbParameterCollectionHelper.cs
- CodeDOMUtility.cs
- StackSpiller.cs
- BackStopAuthenticationModule.cs
- RijndaelCryptoServiceProvider.cs
- __TransparentProxy.cs
- Polyline.cs
- Win32Native.cs
- InputLangChangeEvent.cs
- EventPrivateKey.cs
- HorizontalAlignConverter.cs
- ClientType.cs
- MD5.cs
- LinkClickEvent.cs
- ImpersonateTokenRef.cs
- SqlUDTStorage.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- ListMarkerSourceInfo.cs
- ReflectTypeDescriptionProvider.cs
- ConfigurationManagerHelperFactory.cs
- DataGridDetailsPresenterAutomationPeer.cs
- Geometry.cs
- ClusterSafeNativeMethods.cs
- PersistencePipeline.cs
- ConnectionManagementElementCollection.cs
- CodeSnippetCompileUnit.cs
- EventArgs.cs
- StatusBarPanel.cs
- WebPartCloseVerb.cs
- ControlHelper.cs
- ProfileParameter.cs
- XmlSchemaAnnotated.cs
- RegistryPermission.cs