Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / Runtime / EarlyBoundInfo.cs / 1305376 / EarlyBoundInfo.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- using System.Diagnostics; using System.Reflection; namespace System.Xml.Xsl.Runtime { ////// This class contains information about early bound function objects. /// internal sealed class EarlyBoundInfo { private string namespaceUri; // Namespace Uri mapped to these early bound functions private ConstructorInfo constrInfo; // Constructor for the early bound function object public EarlyBoundInfo(string namespaceUri, Type ebType) { Debug.Assert(namespaceUri != null && ebType != null); // Get the default constructor this.namespaceUri = namespaceUri; this.constrInfo = ebType.GetConstructor(Type.EmptyTypes); Debug.Assert(this.constrInfo != null, "The early bound object type " + ebType.FullName + " must have a public default constructor"); } ////// Get the Namespace Uri mapped to these early bound functions. /// public string NamespaceUri { get { return this.namespaceUri; } } ////// Return the Clr Type of the early bound object. /// public Type EarlyBoundType { get { return this.constrInfo.DeclaringType; } } ////// Create an instance of the early bound object. /// public object CreateObject() { return this.constrInfo.Invoke(new object[] {}); } ////// Override Equals method so that EarlyBoundInfo to implement value comparison. /// public override bool Equals(object obj) { EarlyBoundInfo info = obj as EarlyBoundInfo; if (info == null) return false; return this.namespaceUri == info.namespaceUri && this.constrInfo == info.constrInfo; } ////// Override GetHashCode since Equals is overriden. /// public override int GetHashCode() { return this.namespaceUri.GetHashCode(); } } } // 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
- SchemaImporterExtension.cs
- RijndaelManaged.cs
- ContentElementCollection.cs
- SqlCommandBuilder.cs
- Avt.cs
- TransactionManager.cs
- EventDescriptor.cs
- PermissionToken.cs
- OleDbConnectionFactory.cs
- XPathNodeInfoAtom.cs
- ColumnCollectionEditor.cs
- RulePatternOps.cs
- objectquery_tresulttype.cs
- TablePattern.cs
- Thread.cs
- MailMessage.cs
- MeasureData.cs
- _NestedMultipleAsyncResult.cs
- OdbcHandle.cs
- _NegoState.cs
- DesignerVerb.cs
- SqlConnectionStringBuilder.cs
- InstanceCollisionException.cs
- SoapBinding.cs
- WindowInteractionStateTracker.cs
- XmlSequenceWriter.cs
- DefaultParameterValueAttribute.cs
- XPathNodeInfoAtom.cs
- Documentation.cs
- PenLineCapValidation.cs
- ConsoleTraceListener.cs
- NumericPagerField.cs
- CqlIdentifiers.cs
- RuntimeHelpers.cs
- ToolboxItemAttribute.cs
- ActiveXHelper.cs
- RegexInterpreter.cs
- CapabilitiesRule.cs
- DrawingGroup.cs
- UIPermission.cs
- AsyncOperationManager.cs
- AutoGeneratedFieldProperties.cs
- TextRange.cs
- EntityWithChangeTrackerStrategy.cs
- TextFormatterImp.cs
- NonVisualControlAttribute.cs
- CrossContextChannel.cs
- HttpContext.cs
- RegisteredExpandoAttribute.cs
- CheckBoxRenderer.cs
- DispatchWrapper.cs
- FamilyMapCollection.cs
- DataGridViewEditingControlShowingEventArgs.cs
- PhysicalOps.cs
- CloseCollectionAsyncResult.cs
- TrackingMemoryStream.cs
- EntityKey.cs
- LazyTextWriterCreator.cs
- SourceSwitch.cs
- MemberRelationshipService.cs
- TextClipboardData.cs
- DataGridViewMethods.cs
- SoapInteropTypes.cs
- Geometry3D.cs
- Model3DGroup.cs
- WSSecurityOneDotZeroReceiveSecurityHeader.cs
- QueryContinueDragEventArgs.cs
- DuplicateDetector.cs
- StateDesigner.CommentLayoutGlyph.cs
- DecoderExceptionFallback.cs
- SerializationAttributes.cs
- TaiwanCalendar.cs
- ObjectHandle.cs
- ScriptMethodAttribute.cs
- XsdDateTime.cs
- EventRecord.cs
- DbDataRecord.cs
- FirstMatchCodeGroup.cs
- FormsAuthenticationTicket.cs
- GiveFeedbackEventArgs.cs
- VersionedStreamOwner.cs
- SchemaImporterExtensionsSection.cs
- WindowsRegion.cs
- NCryptSafeHandles.cs
- NullableDoubleAverageAggregationOperator.cs
- ComNativeDescriptor.cs
- OracleRowUpdatedEventArgs.cs
- RuntimeHelpers.cs
- InvokeSchedule.cs
- File.cs
- SID.cs
- SimpleWebHandlerParser.cs
- httpapplicationstate.cs
- RefreshEventArgs.cs
- DragEventArgs.cs
- EnumValAlphaComparer.cs
- SemaphoreSecurity.cs
- CodeTypeReferenceCollection.cs
- SymbolTable.cs
- CompiledIdentityConstraint.cs