Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WF / Activities / Common / DelegateTypeInfo.cs / 1305376 / DelegateTypeInfo.cs
// Copyright (c) Microsoft Corporation. All rights reserved. // // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, // WHETHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED // WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. // THE ENTIRE RISK OF USE OR RESULTS IN CONNECTION WITH THE USE OF THIS CODE // AND INFORMATION REMAINS WITH THE USER. // /********************************************************************** * NOTE: A copy of this file exists at: WF\Common\Shared * The two files must be kept in [....]. Any change made here must also * be made to WF\Common\Shared\DelegateTypeInfo.cs *********************************************************************/ namespace System.Workflow.Activities.Common { using System; using System.CodeDom; using System.Collections; using System.Globalization; using System.ComponentModel; using System.ComponentModel.Design; using System.Reflection; using System.Diagnostics.CodeAnalysis; internal class DelegateTypeInfo { private CodeParameterDeclarationExpression[] parameters; private Type[] parameterTypes; private CodeTypeReference returnType; internal CodeParameterDeclarationExpression[] Parameters { get { return parameters; } } internal Type[] ParameterTypes { get { return parameterTypes; } } internal CodeTypeReference ReturnType { get { return returnType; } } internal DelegateTypeInfo(Type delegateClass) { Resolve(delegateClass); } [SuppressMessage("Microsoft.Globalization", "CA1307:SpecifyStringComparison", Justification = "EndsWith(\"&\") not a security issue.")] private void Resolve(Type delegateClass) { MethodInfo invokeMethod = delegateClass.GetMethod("Invoke"); if (invokeMethod == null) throw new ArgumentException("delegateClass"); Resolve(invokeMethod); } [SuppressMessage("Microsoft.Globalization", "CA1307:SpecifyStringComparison", Justification = "EndsWith(\"&\") not a security issue.")] private void Resolve(MethodInfo method) { // Here we build up an array of argument types, separated // by commas. ParameterInfo[] argTypes = method.GetParameters(); parameters = new CodeParameterDeclarationExpression[argTypes.Length]; parameterTypes = new Type[argTypes.Length]; for (int index = 0; index < argTypes.Length; index++) { string paramName = argTypes[index].Name; Type paramType = argTypes[index].ParameterType; if (paramName == null || paramName.Length == 0) paramName = "param" + index.ToString(CultureInfo.InvariantCulture); FieldDirection fieldDir = FieldDirection.In; // check for the '&' that means ref (gotta love it!) // and we need to strip that & before we continue. Ouch. if (paramType.IsByRef) { if (paramType.FullName.EndsWith("&")) { // strip the & and reload the type without it. paramType = paramType.Assembly.GetType(paramType.FullName.Substring(0, paramType.FullName.Length - 1), true); } fieldDir = FieldDirection.Ref; } if (argTypes[index].IsOut) { if (argTypes[index].IsIn) fieldDir = FieldDirection.Ref; else fieldDir = FieldDirection.Out; } parameters[index] = new CodeParameterDeclarationExpression(new CodeTypeReference(paramType), paramName); parameters[index].Direction = fieldDir; parameterTypes[index] = paramType; } this.returnType = new CodeTypeReference(method.ReturnType); } public override bool Equals(object other) { if (other == null) return false; DelegateTypeInfo dtiOther = other as DelegateTypeInfo; if (dtiOther == null) return false; if (ReturnType.BaseType != dtiOther.ReturnType.BaseType || Parameters.Length != dtiOther.Parameters.Length) return false; for (int parameter = 0; parameter < Parameters.Length; parameter++) { CodeParameterDeclarationExpression otherParam = dtiOther.Parameters[parameter]; if (otherParam.Type.BaseType != Parameters[parameter].Type.BaseType) return false; } return true; } public override int GetHashCode() { return base.GetHashCode(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. // // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, // WHETHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED // WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. // THE ENTIRE RISK OF USE OR RESULTS IN CONNECTION WITH THE USE OF THIS CODE // AND INFORMATION REMAINS WITH THE USER. // /********************************************************************** * NOTE: A copy of this file exists at: WF\Common\Shared * The two files must be kept in [....]. Any change made here must also * be made to WF\Common\Shared\DelegateTypeInfo.cs *********************************************************************/ namespace System.Workflow.Activities.Common { using System; using System.CodeDom; using System.Collections; using System.Globalization; using System.ComponentModel; using System.ComponentModel.Design; using System.Reflection; using System.Diagnostics.CodeAnalysis; internal class DelegateTypeInfo { private CodeParameterDeclarationExpression[] parameters; private Type[] parameterTypes; private CodeTypeReference returnType; internal CodeParameterDeclarationExpression[] Parameters { get { return parameters; } } internal Type[] ParameterTypes { get { return parameterTypes; } } internal CodeTypeReference ReturnType { get { return returnType; } } internal DelegateTypeInfo(Type delegateClass) { Resolve(delegateClass); } [SuppressMessage("Microsoft.Globalization", "CA1307:SpecifyStringComparison", Justification = "EndsWith(\"&\") not a security issue.")] private void Resolve(Type delegateClass) { MethodInfo invokeMethod = delegateClass.GetMethod("Invoke"); if (invokeMethod == null) throw new ArgumentException("delegateClass"); Resolve(invokeMethod); } [SuppressMessage("Microsoft.Globalization", "CA1307:SpecifyStringComparison", Justification = "EndsWith(\"&\") not a security issue.")] private void Resolve(MethodInfo method) { // Here we build up an array of argument types, separated // by commas. ParameterInfo[] argTypes = method.GetParameters(); parameters = new CodeParameterDeclarationExpression[argTypes.Length]; parameterTypes = new Type[argTypes.Length]; for (int index = 0; index < argTypes.Length; index++) { string paramName = argTypes[index].Name; Type paramType = argTypes[index].ParameterType; if (paramName == null || paramName.Length == 0) paramName = "param" + index.ToString(CultureInfo.InvariantCulture); FieldDirection fieldDir = FieldDirection.In; // check for the '&' that means ref (gotta love it!) // and we need to strip that & before we continue. Ouch. if (paramType.IsByRef) { if (paramType.FullName.EndsWith("&")) { // strip the & and reload the type without it. paramType = paramType.Assembly.GetType(paramType.FullName.Substring(0, paramType.FullName.Length - 1), true); } fieldDir = FieldDirection.Ref; } if (argTypes[index].IsOut) { if (argTypes[index].IsIn) fieldDir = FieldDirection.Ref; else fieldDir = FieldDirection.Out; } parameters[index] = new CodeParameterDeclarationExpression(new CodeTypeReference(paramType), paramName); parameters[index].Direction = fieldDir; parameterTypes[index] = paramType; } this.returnType = new CodeTypeReference(method.ReturnType); } public override bool Equals(object other) { if (other == null) return false; DelegateTypeInfo dtiOther = other as DelegateTypeInfo; if (dtiOther == null) return false; if (ReturnType.BaseType != dtiOther.ReturnType.BaseType || Parameters.Length != dtiOther.Parameters.Length) return false; for (int parameter = 0; parameter < Parameters.Length; parameter++) { CodeParameterDeclarationExpression otherParam = dtiOther.Parameters[parameter]; if (otherParam.Type.BaseType != Parameters[parameter].Type.BaseType) return false; } return true; } public override int GetHashCode() { return base.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
- DesignerGeometryHelper.cs
- ProtectedProviderSettings.cs
- SecurityPolicyVersion.cs
- unitconverter.cs
- SqlCacheDependencyDatabase.cs
- CompressedStack.cs
- CodeDelegateCreateExpression.cs
- QualifiedCellIdBoolean.cs
- BitmapImage.cs
- DataGridItemCollection.cs
- OverloadGroupAttribute.cs
- SchemaCollectionCompiler.cs
- EnlistmentState.cs
- AstTree.cs
- storepermissionattribute.cs
- XslVisitor.cs
- SchemaHelper.cs
- DictionaryEntry.cs
- DataMember.cs
- UserThread.cs
- InternalReceiveMessage.cs
- COM2Properties.cs
- Crc32.cs
- PointUtil.cs
- BinaryExpression.cs
- WebPartTransformerCollection.cs
- ApplicationTrust.cs
- GeometryHitTestResult.cs
- SerializationException.cs
- _FixedSizeReader.cs
- OracleMonthSpan.cs
- TypeConstant.cs
- EdmItemCollection.cs
- XmlSchemaIdentityConstraint.cs
- DecoderReplacementFallback.cs
- AuthorizationRule.cs
- SystemInformation.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- XmlNamespaceMapping.cs
- SmiRequestExecutor.cs
- ExecutionScope.cs
- LicenseManager.cs
- PrivilegeNotHeldException.cs
- TargetException.cs
- ControlCachePolicy.cs
- QuaternionRotation3D.cs
- GcHandle.cs
- MediaTimeline.cs
- ClickablePoint.cs
- WithParamAction.cs
- TabPanel.cs
- KeySpline.cs
- itemelement.cs
- Win32KeyboardDevice.cs
- FocusTracker.cs
- TaskResultSetter.cs
- SelectionEditor.cs
- ImpersonateTokenRef.cs
- _ListenerRequestStream.cs
- PrintDocument.cs
- XhtmlTextWriter.cs
- OleCmdHelper.cs
- CompositeControlDesigner.cs
- StickyNoteContentControl.cs
- TextContainerChangedEventArgs.cs
- UriParserTemplates.cs
- XamlTypeMapper.cs
- Signature.cs
- InlineUIContainer.cs
- XmlResolver.cs
- QilInvokeEarlyBound.cs
- HostingPreferredMapPath.cs
- LocationReferenceValue.cs
- XmlDataDocument.cs
- FakeModelPropertyImpl.cs
- XPathPatternParser.cs
- RTLAwareMessageBox.cs
- UIElement3DAutomationPeer.cs
- SharedPersonalizationStateInfo.cs
- PerspectiveCamera.cs
- AttributeProviderAttribute.cs
- QilGeneratorEnv.cs
- XmlObjectSerializerReadContextComplex.cs
- NetworkInformationException.cs
- DetailsView.cs
- AbsoluteQuery.cs
- FullTextBreakpoint.cs
- XmlSchemaException.cs
- SetStateEventArgs.cs
- ZoneLinkButton.cs
- ColorMatrix.cs
- HtmlFormParameterReader.cs
- TypeReference.cs
- PerfCounters.cs
- GrammarBuilderRuleRef.cs
- DataListAutoFormat.cs
- DeviceSpecificChoiceCollection.cs
- RemotingServices.cs
- FreezableOperations.cs
- UserControl.cs