Code:
/ DotNET / DotNET / 8.0 / untmp / Orcas / RTM / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UniqueIdentifierService.cs
- ReferenceCountedObject.cs
- InheritablePropertyChangeInfo.cs
- Collection.cs
- OciEnlistContext.cs
- BigInt.cs
- AcceptorSessionSymmetricTransportSecurityProtocol.cs
- IpcServerChannel.cs
- GenericTextProperties.cs
- SignerInfo.cs
- CfgParser.cs
- Attributes.cs
- FlowPosition.cs
- LiteralControl.cs
- DataPointer.cs
- ExceptionValidationRule.cs
- EventPropertyMap.cs
- UserNameSecurityTokenAuthenticator.cs
- streamingZipPartStream.cs
- XmlArrayAttribute.cs
- ComponentDispatcherThread.cs
- FunctionMappingTranslator.cs
- CookieProtection.cs
- MediaSystem.cs
- ToolTipAutomationPeer.cs
- DynamicDocumentPaginator.cs
- FederatedMessageSecurityOverHttpElement.cs
- CustomValidator.cs
- TextBox.cs
- Expression.cs
- FontUnitConverter.cs
- CellQuery.cs
- RichTextBox.cs
- DesignBinding.cs
- ImageSourceConverter.cs
- ParserStreamGeometryContext.cs
- ObjectDataSourceMethodEventArgs.cs
- CacheRequest.cs
- DefaultPropertyAttribute.cs
- IDQuery.cs
- EdmItemError.cs
- Matrix3DConverter.cs
- ClientTargetCollection.cs
- RunWorkerCompletedEventArgs.cs
- TraceXPathNavigator.cs
- TextAnchor.cs
- AnnotationHighlightLayer.cs
- ProtocolsConfiguration.cs
- CryptoStream.cs
- ComplexTypeEmitter.cs
- StyleHelper.cs
- XmlSchemaSimpleTypeRestriction.cs
- MethodRental.cs
- Panel.cs
- UnSafeCharBuffer.cs
- XamlSerializerUtil.cs
- ProxyWebPartManagerDesigner.cs
- BindingsSection.cs
- CacheModeConverter.cs
- LongPath.cs
- OleDbReferenceCollection.cs
- DataColumnPropertyDescriptor.cs
- PathStreamGeometryContext.cs
- XmlHelper.cs
- PageFunction.cs
- ExtendLockAsyncResult.cs
- DBDataPermissionAttribute.cs
- TraceSource.cs
- NameValuePermission.cs
- RichTextBox.cs
- FileDataSourceCache.cs
- sqlcontext.cs
- RoleGroup.cs
- Keyboard.cs
- KeyTime.cs
- SafeRightsManagementEnvironmentHandle.cs
- VisualTarget.cs
- VisualTreeHelper.cs
- CqlQuery.cs
- DataGridViewDataErrorEventArgs.cs
- BulletedListEventArgs.cs
- SmiEventSink_DeferedProcessing.cs
- BrowsableAttribute.cs
- DependencyPropertyKind.cs
- SqlUDTStorage.cs
- Dynamic.cs
- RemotingServices.cs
- CodeThrowExceptionStatement.cs
- RectAnimationBase.cs
- AnimationClockResource.cs
- PropertyHelper.cs
- WaitHandleCannotBeOpenedException.cs
- InvalidOperationException.cs
- Matrix.cs
- MatrixCamera.cs
- LoginUtil.cs
- DbUpdateCommandTree.cs
- ClientScriptManagerWrapper.cs
- RtType.cs
- EntitySqlException.cs