Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WF / Common / AuthoringOM / Compiler / TypeSystem / MethodInfo.cs / 1305376 / MethodInfo.cs
#pragma warning disable 1634, 1691 namespace System.Workflow.ComponentModel.Compiler { using System; using System.CodeDom; using System.Collections; using System.Collections.Specialized; using System.ComponentModel; using System.ComponentModel.Design; using System.Diagnostics; using System.Globalization; using System.Reflection; #region DesignTimeConstructorInfo ////// This class takes care of static and non-static constructors /// internal sealed class DesignTimeConstructorInfo: ConstructorInfo { #region Members and Constructors private CodeMemberMethod codeConstructor = null; // Data associated with a bound ctor private DesignTimeType declaringType = null; // Data associated with this ctor private ParameterInfo[] parameters = null; private Attribute[] attributes = null; internal DesignTimeConstructorInfo(DesignTimeType declaringType, CodeMemberMethod codeConstructor) { this.declaringType = declaringType; this.codeConstructor = codeConstructor; } #endregion #region ConstructorInfo overrides public override Object Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) { throw new NotImplementedException(TypeSystemSR.GetString("Error_RuntimeNotSupported")); } #endregion #region MethodBase Overrides public override ParameterInfo[] GetParameters() { if (this.parameters == null) { // Get the parameters CodeParameterDeclarationExpressionCollection parameters = codeConstructor.Parameters; ParameterInfo[] paramArray = new ParameterInfo[parameters.Count]; for (int index = 0; index < parameters.Count; index++) { paramArray[index] = new DesignTimeParameterInfo(parameters[index], index, this); } this.parameters = paramArray; } return this.parameters; // } public override MethodImplAttributes GetMethodImplementationFlags() { return MethodImplAttributes.IL; } public override RuntimeMethodHandle MethodHandle { get { // not interested in Runtime information #pragma warning suppress 56503 throw new NotImplementedException(TypeSystemSR.GetString("Error_RuntimeNotSupported")); } } public override MethodAttributes Attributes { get { return Helper.ConvertToMethodAttributes(this.codeConstructor.Attributes); } } public override object Invoke(object obj, BindingFlags invokeAttr, Binder binder, object[] parameters, CultureInfo culture) { throw new NotImplementedException(TypeSystemSR.GetString("Error_RuntimeNotSupported")); } #endregion #region MemberInfo Overrides public override string Name { get { return ".ctor"; } } public override Type DeclaringType { get { return this.declaringType; } } public override Type ReflectedType { get { return this.declaringType; } } public override object[] GetCustomAttributes(bool inherit) { return GetCustomAttributes(typeof(object), inherit); } public override object[] GetCustomAttributes(Type attributeType, bool inherit) { if (attributeType == null) throw new ArgumentNullException("attributeType"); if (this.attributes == null) this.attributes = Helper.LoadCustomAttributes(this.codeConstructor.CustomAttributes, this.DeclaringType as DesignTimeType); return Helper.GetCustomAttributes(attributeType, inherit, this.attributes, this); } public override bool IsDefined(Type attributeType, bool inherit) { if (attributeType == null) throw new ArgumentNullException("attributeType"); if (this.attributes == null) this.attributes = Helper.LoadCustomAttributes(this.codeConstructor.CustomAttributes, this.DeclaringType as DesignTimeType); if (Helper.IsDefined(attributeType, inherit, attributes, this)) return true; return false; } #endregion } #endregion #region DesignTimeMethodInfo internal class DesignTimeMethodInfo: MethodInfo { #region Members and Constructors private CodeMemberMethod methodInfo; private ParameterInfo[] parameters; // Data assocaited with a bound object private DesignTimeType declaringType; private Attribute[] attributes = null; private ParameterInfo returnParam = null; private bool isSpecialName = false; internal DesignTimeMethodInfo(DesignTimeType declaringType, CodeMemberMethod methodInfo, bool isSpecialName) { this.declaringType = declaringType; this.methodInfo = methodInfo; this.isSpecialName = isSpecialName; } internal DesignTimeMethodInfo(DesignTimeType declaringType, CodeMemberMethod methodInfo) { this.declaringType = declaringType; this.methodInfo = methodInfo; } #endregion #region Method Info overrides public override Type ReturnType { get { return declaringType.ResolveType(DesignTimeType.GetTypeNameFromCodeTypeReference(this.methodInfo.ReturnType, declaringType)); } } public override ICustomAttributeProvider ReturnTypeCustomAttributes { get { return null; } } public override MethodInfo GetBaseDefinition() { throw new NotImplementedException(); } public override ParameterInfo ReturnParameter { get { if(this.returnParam == null) this.returnParam = new DesignTimeParameterInfo(this.methodInfo.ReturnType, this); return this.returnParam; } } #endregion #region MethodBase Overrides public override ParameterInfo[] GetParameters() { if (this.parameters == null) { // Get the parameters CodeParameterDeclarationExpressionCollection parameters = this.methodInfo.Parameters; ParameterInfo[] paramArray = new ParameterInfo[parameters.Count]; for (int index = 0; index < parameters.Count; index++) { paramArray[index] = new DesignTimeParameterInfo(parameters[index], index, this); } this.parameters = paramArray; } return this.parameters; // } public override MethodImplAttributes GetMethodImplementationFlags() { return MethodImplAttributes.IL; } public override RuntimeMethodHandle MethodHandle { get { // not interested in Runtime information #pragma warning suppress 56503 throw new NotImplementedException(TypeSystemSR.GetString("Error_RuntimeNotSupported")); } } public override MethodAttributes Attributes { get { return Helper.ConvertToMethodAttributes(this.methodInfo.Attributes) | (this.isSpecialName?MethodAttributes.SpecialName:0); } } public override object Invoke(object obj, BindingFlags invokeAttr, Binder binder, object[] parameters, CultureInfo culture) { throw new NotImplementedException(TypeSystemSR.GetString("Error_RuntimeNotSupported")); } #endregion #region MemberInfo Overrides public override string Name { get { return Helper.EnsureTypeName(this.methodInfo.Name); } } public override Type DeclaringType { get { return this.declaringType; } } public override Type ReflectedType { get { return this.declaringType; } } public override object[] GetCustomAttributes(bool inherit) { return GetCustomAttributes(typeof(object), inherit); } public override object[] GetCustomAttributes(Type attributeType, bool inherit) { if (attributeType == null) throw new ArgumentNullException("attributeType"); if (this.attributes == null) if (this.methodInfo == null) this.attributes = new Attribute[0]; else this.attributes = Helper.LoadCustomAttributes(this.methodInfo.CustomAttributes, this.DeclaringType as DesignTimeType); return Helper.GetCustomAttributes(attributeType, inherit, this.attributes, this); } public override bool IsDefined(Type attributeType, bool inherit) { if (attributeType == null) throw new ArgumentNullException("attributeType"); if (this.attributes == null) this.attributes = Helper.LoadCustomAttributes(this.methodInfo.CustomAttributes, this.DeclaringType as DesignTimeType); if (Helper.IsDefined(attributeType, inherit, attributes, this)) return true; return false; } #endregion } #endregion } // 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
- XPathAncestorQuery.cs
- XmlLanguage.cs
- LocalizabilityAttribute.cs
- PagesSection.cs
- InputProcessorProfilesLoader.cs
- Hex.cs
- SrgsRuleRef.cs
- OperationContext.cs
- SafeUserTokenHandle.cs
- CheckBox.cs
- PageAdapter.cs
- RotateTransform.cs
- VectorConverter.cs
- XmlStringTable.cs
- StreamingContext.cs
- ParserExtension.cs
- IntegerFacetDescriptionElement.cs
- CodeDirectoryCompiler.cs
- LocatorManager.cs
- SecurityCriticalDataForSet.cs
- TagPrefixCollection.cs
- ToolStripSystemRenderer.cs
- ForeignConstraint.cs
- WebPartZoneBase.cs
- SettingsAttributeDictionary.cs
- SqlFileStream.cs
- ChannelDispatcherCollection.cs
- ParameterCollection.cs
- FormsAuthenticationModule.cs
- DropShadowEffect.cs
- TemplatedMailWebEventProvider.cs
- XmlEncApr2001.cs
- ResponseStream.cs
- LayoutEngine.cs
- Converter.cs
- PointConverter.cs
- GroupBox.cs
- CharacterMetricsDictionary.cs
- OracleRowUpdatedEventArgs.cs
- SoapEnvelopeProcessingElement.cs
- PlainXmlDeserializer.cs
- MetaColumn.cs
- Win32KeyboardDevice.cs
- StrongTypingException.cs
- XPathNodePointer.cs
- AsymmetricSignatureFormatter.cs
- SafeWaitHandle.cs
- LinkLabelLinkClickedEvent.cs
- TableHeaderCell.cs
- XmlSerializerAssemblyAttribute.cs
- Pen.cs
- DataViewManagerListItemTypeDescriptor.cs
- WeakReferenceEnumerator.cs
- ADMembershipUser.cs
- GroupItemAutomationPeer.cs
- ICollection.cs
- InstanceContextManager.cs
- OneWayChannelListener.cs
- SubstitutionList.cs
- EncoderFallback.cs
- MenuItem.cs
- LinqDataView.cs
- TextSchema.cs
- XmlStreamNodeWriter.cs
- ObjectDataProvider.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- VirtualPathProvider.cs
- XmlSchemaParticle.cs
- LongCountAggregationOperator.cs
- ParserStreamGeometryContext.cs
- XmlProcessingInstruction.cs
- PackUriHelper.cs
- RegistryPermission.cs
- LabelAutomationPeer.cs
- ImageButton.cs
- DataGridViewRowPostPaintEventArgs.cs
- StylusPointProperties.cs
- XPathSingletonIterator.cs
- GridLengthConverter.cs
- Mouse.cs
- InputGestureCollection.cs
- ActivityExecutionFilter.cs
- DateTimeUtil.cs
- SystemException.cs
- TemplateEditingService.cs
- COAUTHINFO.cs
- WhitespaceSignificantCollectionAttribute.cs
- XmlMapping.cs
- DataServices.cs
- HttpModuleCollection.cs
- ExternalFile.cs
- TransformValueSerializer.cs
- DummyDataSource.cs
- ComMethodElement.cs
- NavigationWindow.cs
- LoggedException.cs
- WmfPlaceableFileHeader.cs
- NumericExpr.cs
- CodeTypeDeclarationCollection.cs
- GeometryGroup.cs