Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / QIL / QilReference.cs / 1305376 / QilReference.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; using System.Diagnostics; namespace System.Xml.Xsl.Qil { ////// View over a Qil node which is the target of a reference (functions, variables, parameters). /// internal class QilReference : QilNode { // Names longer than 1023 characters cause AV in cscompee.dll, see VSWhidbey 485526 // So we set the internal limit to 1000. Needs to be lower since we might later append // few characters (for example "(2)") if we end up with two same named methods after // the truncation. private const int MaxDebugNameLength = 1000; private string debugName; //----------------------------------------------- // Constructor //----------------------------------------------- ////// Construct a reference /// public QilReference(QilNodeType nodeType) : base(nodeType) { } //----------------------------------------------- // QilReference methods //----------------------------------------------- ////// Name of this reference, preserved for debugging (may be null). /// public string DebugName { get { return this.debugName; } set { if (value.Length > MaxDebugNameLength) value = value.Substring(0, MaxDebugNameLength); this.debugName = value; } } } } // 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
- QueryResult.cs
- NodeFunctions.cs
- X509Utils.cs
- SmtpClient.cs
- _ProxyRegBlob.cs
- Compiler.cs
- LinqDataSourceEditData.cs
- TargetConverter.cs
- DBPropSet.cs
- BuildTopDownAttribute.cs
- ComponentConverter.cs
- Renderer.cs
- WorkflowApplicationCompletedException.cs
- SqlDeflator.cs
- FormatterConverter.cs
- UnSafeCharBuffer.cs
- EntityDataSourceDataSelectionPanel.cs
- DispatcherHookEventArgs.cs
- DoubleCollection.cs
- SecureStringHasher.cs
- EventRouteFactory.cs
- Color.cs
- DESCryptoServiceProvider.cs
- CategoryNameCollection.cs
- SubclassTypeValidatorAttribute.cs
- ClaimTypes.cs
- LocalBuilder.cs
- AppDomainAttributes.cs
- ClaimComparer.cs
- RSAOAEPKeyExchangeFormatter.cs
- StringAnimationUsingKeyFrames.cs
- RegexCapture.cs
- SchemaDeclBase.cs
- MetadataSource.cs
- SharedPersonalizationStateInfo.cs
- SystemNetHelpers.cs
- EditingCoordinator.cs
- InstancePersistenceEvent.cs
- ElementNotAvailableException.cs
- TargetParameterCountException.cs
- Peer.cs
- AnonymousIdentificationModule.cs
- SemanticResolver.cs
- XmlSchemaAttributeGroup.cs
- UriScheme.cs
- EventLog.cs
- UpdateExpressionVisitor.cs
- WebPartConnectionsCancelEventArgs.cs
- GridErrorDlg.cs
- XmlSchemaSubstitutionGroup.cs
- OleDbMetaDataFactory.cs
- XmlSchemaAttributeGroup.cs
- FileRegion.cs
- TakeOrSkipWhileQueryOperator.cs
- ResourceProperty.cs
- UserPersonalizationStateInfo.cs
- returneventsaver.cs
- AspNetHostingPermission.cs
- SqlDataSourceFilteringEventArgs.cs
- ArrayExtension.cs
- FixedSOMTableRow.cs
- EntityDataReader.cs
- InputLanguageProfileNotifySink.cs
- ArrayList.cs
- HierarchicalDataSourceControl.cs
- XPathNodeHelper.cs
- securitycriticaldata.cs
- PreviewPrintController.cs
- VectorCollectionConverter.cs
- EntityKeyElement.cs
- DerivedKeySecurityTokenStub.cs
- PropertyEmitterBase.cs
- DesignBindingEditor.cs
- SpeakCompletedEventArgs.cs
- MultiBinding.cs
- XPathScanner.cs
- IsolatedStoragePermission.cs
- DataColumnPropertyDescriptor.cs
- ElementProxy.cs
- TagPrefixCollection.cs
- TimerElapsedEvenArgs.cs
- AttributeCollection.cs
- DbConnectionPoolCounters.cs
- MultiBindingExpression.cs
- TreeNodeBinding.cs
- OSFeature.cs
- XmlDocumentSchema.cs
- ValueUtilsSmi.cs
- DiagnosticTraceSource.cs
- PathSegment.cs
- TypeSystem.cs
- ModifierKeysValueSerializer.cs
- EventListener.cs
- GetFileNameResult.cs
- TextSelectionHighlightLayer.cs
- AbstractSvcMapFileLoader.cs
- FindResponse.cs
- HttpChannelHelper.cs
- AuthStoreRoleProvider.cs
- ForEachAction.cs