You've already forked linux-packaging-mono
Rewrite with hard-coded offsets into the PE file format to discern if a binary is PE32 or PE32+, and then to determine if it contains a "CLR Data Directory" entry that looks valid. Tested with PE32 and PE32+ compiled Mono binaries, PE32 and PE32+ native binaries, and a random assortment of garbage files. Former-commit-id: 9e7ac86ec84f653a2f79b87183efd5b0ebda001b
711 lines
163 KiB
C#
711 lines
163 KiB
C#
using System.Diagnostics.CodeAnalysis;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Windows.Markup;
|
|
|
|
// General Information about an assembly is controlled through the following
|
|
// set of attributes. Change these attribute values to modify the information
|
|
// associated with an assembly.
|
|
|
|
// type forwards to System.ServiceModel.dll for context binding classes
|
|
[assembly: TypeForwardedTo(typeof(System.ServiceModel.BasicHttpContextBinding))]
|
|
[assembly: TypeForwardedTo(typeof(System.ServiceModel.NetTcpContextBinding))]
|
|
[assembly: TypeForwardedTo(typeof(System.ServiceModel.WSHttpContextBinding))]
|
|
[assembly: TypeForwardedTo(typeof(System.ServiceModel.Channels.ContextBindingElement))]
|
|
[assembly: TypeForwardedTo(typeof(System.ServiceModel.Channels.ContextBindingElementImporter))]
|
|
[assembly: TypeForwardedTo(typeof(System.ServiceModel.Channels.ContextExchangeMechanism))]
|
|
[assembly: TypeForwardedTo(typeof(System.ServiceModel.Channels.ContextMessageProperty))]
|
|
[assembly: TypeForwardedTo(typeof(System.ServiceModel.Channels.IContextBindingElement))]
|
|
[assembly: TypeForwardedTo(typeof(System.ServiceModel.Channels.IContextManager))]
|
|
[assembly: TypeForwardedTo(typeof(System.ServiceModel.Configuration.ContextBindingElementExtensionElement))]
|
|
[assembly: TypeForwardedTo(typeof(System.ServiceModel.Configuration.NetTcpContextBindingCollectionElement))]
|
|
[assembly: TypeForwardedTo(typeof(System.ServiceModel.Configuration.NetTcpContextBindingElement))]
|
|
[assembly: TypeForwardedTo(typeof(System.ServiceModel.Configuration.WSHttpContextBindingCollectionElement))]
|
|
[assembly: TypeForwardedTo(typeof(System.ServiceModel.Configuration.WSHttpContextBindingElement))]
|
|
[assembly: TypeForwardedTo(typeof(System.ServiceModel.Configuration.BasicHttpContextBindingCollectionElement))]
|
|
[assembly: TypeForwardedTo(typeof(System.ServiceModel.Configuration.BasicHttpContextBindingElement))]
|
|
|
|
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.WorkflowServiceHost.#OnClosing()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Activation.WorkflowServiceHostFactory.#GetTypeFromString(System.String,System.Uri[])")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Activities.WorkflowRuntimeServicesExtensionProvider.#PopulateExtensions(System.ServiceModel.Activities.WorkflowServiceHost,System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2117:AptcaTypesShouldOnlyExtendAptcaBaseTypes", Scope = "type", Target = "System.ServiceModel.Configuration.ExtendedWorkflowRuntimeServiceElementCollection")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Configuration.ExtendedWorkflowRuntimeServiceElementCollection.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Configuration.ExtendedWorkflowRuntimeServiceElementCollection.#Remove(System.Workflow.Runtime.Configuration.WorkflowRuntimeServiceElement)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Configuration.WorkflowRuntimeElement.#CreateBehavior()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Configuration.WorkflowRuntimeElement.#CreateWorkflowRuntimeSection()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Description.DescriptionCreator.#BuildServiceDescription(System.Collections.Generic.IDictionary`2<System.String,System.ServiceModel.Description.ContractDescription>&,System.Collections.Generic.IList`1<System.Type>&)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Description.WorkflowRuntimeBehavior.#ApplyDispatchBehavior(System.ServiceModel.Description.ServiceDescription,System.ServiceModel.ServiceHostBase)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Description.WorkflowRuntimeBehavior.#DefaultWorkflowRuntimeSection")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Description.WorkflowRuntimeBehavior.#ValidateWorkflowRuntime(System.Workflow.Runtime.WorkflowRuntime)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Description.WorkflowRuntimeBehavior.#WorkflowRuntime")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Description.WorkflowServiceBehavior.#ApplyDispatchBehavior(System.ServiceModel.Description.ServiceDescription,System.ServiceModel.ServiceHostBase)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Description.WorkflowServiceBehavior+SkipUnloadOnFirstIdleWorkflowPersistenceService.#.ctor(System.Workflow.Runtime.Hosting.WorkflowPersistenceService)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Description.WorkflowServiceBehavior+SkipUnloadOnFirstIdleWorkflowPersistenceService.#LoadCompletedContextActivity(System.Guid,System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Description.WorkflowServiceBehavior+SkipUnloadOnFirstIdleWorkflowPersistenceService.#LoadWorkflowInstanceState(System.Guid)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Description.WorkflowServiceBehavior+SkipUnloadOnFirstIdleWorkflowPersistenceService.#SaveCompletedContextActivity(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Description.WorkflowServiceBehavior+SkipUnloadOnFirstIdleWorkflowPersistenceService.#SaveWorkflowInstanceState(System.Workflow.ComponentModel.Activity,System.Boolean)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Description.WorkflowServiceBehavior+SkipUnloadOnFirstIdleWorkflowPersistenceService.#Start()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Description.WorkflowServiceBehavior+SkipUnloadOnFirstIdleWorkflowPersistenceService.#Stop()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Description.WorkflowServiceBehavior+SkipUnloadOnFirstIdleWorkflowPersistenceService.#UnloadOnIdle(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Description.WorkflowServiceBehavior+SkipUnloadOnFirstIdleWorkflowPersistenceService.#UnlockWorkflowInstanceState(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowDurableInstance.#GetWorkflowInstance(System.Boolean)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension.#OnTimer(System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension.#OnWorkflowAborted(System.Object,System.Workflow.Runtime.WorkflowEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension.#OnWorkflowCompleted(System.Object,System.Workflow.Runtime.WorkflowCompletedEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension.#OnWorkflowIdled(System.Object,System.Workflow.Runtime.WorkflowEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension.#OnWorkflowLoaded(System.Object,System.Workflow.Runtime.WorkflowEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension.#OnWorkflowStarted(System.Object,System.Workflow.Runtime.WorkflowEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension.#OnWorkflowTerminated(System.Object,System.Workflow.Runtime.WorkflowTerminatedEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension.#OnWorkflowUnloaded(System.Object,System.Workflow.Runtime.WorkflowEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension.#RegisterEvents()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowOperationAsyncResult.#.ctor(System.ServiceModel.Dispatcher.WorkflowOperationInvoker,System.ServiceModel.Dispatcher.WorkflowDurableInstance,System.Object[],System.AsyncCallback,System.Object,System.Int64)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowOperationAsyncResult.#DoWork(System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2117:AptcaTypesShouldOnlyExtendAptcaBaseTypes", Scope = "type", Target = "System.Workflow.Activities.ChannelToken")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#.ctor(System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#EndpointName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#EndpointName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#GetLogicalChannel(System.Workflow.ComponentModel.Activity,System.String,System.String,System.Type)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#Name")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#Name")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#OwnerActivityName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#OwnerActivityName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#System.Workflow.ComponentModel.Design.IPropertyValueProvider.GetPropertyValues(System.ComponentModel.ITypeDescriptorContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2117:AptcaTypesShouldOnlyExtendAptcaBaseTypes", Scope = "type", Target = "System.Workflow.Activities.ContextToken")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#.ctor(System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#GetReceiveContext(System.Workflow.ComponentModel.Activity,System.String,System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#GetRootReceiveContext(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#Name")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#Name")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#OwnerActivityName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#OwnerActivityName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#RegisterReceiveContext(System.Workflow.Activities.ReceiveActivity,System.Guid,System.String,System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#RegisterRootReceiveContext(System.Workflow.ComponentModel.Activity,System.Guid)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#System.Workflow.ComponentModel.Design.IPropertyValueProvider.GetPropertyValues(System.ComponentModel.ITypeDescriptorContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ContractMethodParameterInfo.#.ctor(System.Workflow.Activities.ContractMethodInfo,System.Workflow.Activities.OperationParameterInfo)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.DynamicContractTypeBuilder.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.DynamicContractTypeBuilder.#BuildContractTypes(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.DynamicContractTypeBuilder.#GetContractType(System.Workflow.Activities.OperationInfo,System.Workflow.Activities.ReceiveActivity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.LogicalChannelCollection.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2117:AptcaTypesShouldOnlyExtendAptcaBaseTypes", Scope = "type", Target = "System.Workflow.Activities.OperationInfo")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#ContractName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#ContractName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#GetContractType(System.IServiceProvider)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#GetMethodInfo(System.IServiceProvider)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#IsOneWay")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#IsOneWay")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#Parameters")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#ProtectionLevel")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#ProtectionLevel")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2117:AptcaTypesShouldOnlyExtendAptcaBaseTypes", Scope = "type", Target = "System.Workflow.Activities.OperationInfoBase")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationInfoBase.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationInfoBase.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationInfoBase.#IsReadOnly")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationInfoBase.#Name")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationInfoBase.#Name")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationInfoBase.#PrincipalPermissionName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationInfoBase.#PrincipalPermissionName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationInfoBase.#PrincipalPermissionRole")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationInfoBase.#PrincipalPermissionRole")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2117:AptcaTypesShouldOnlyExtendAptcaBaseTypes", Scope = "type", Target = "System.Workflow.Activities.OperationParameterInfo")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#.ctor(System.Reflection.ParameterInfo)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#.ctor(System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#Attributes")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#Attributes")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#Name")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#Name")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#ParameterType")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#ParameterType")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#Position")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#Position")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2117:AptcaTypesShouldOnlyExtendAptcaBaseTypes", Scope = "type", Target = "System.Workflow.Activities.ReceiveActivity")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#.ctor(System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#CacheRequestContext(System.ServiceModel.Dispatcher.WorkflowRequestContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#Cancel(System.Workflow.ComponentModel.ActivityExecutionContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#CanCreateInstance")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#CanCreateInstance")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#ContextToken")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#ContextToken")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#Dispose(System.Boolean)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#Execute(System.Workflow.ComponentModel.ActivityExecutionContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#ExecuteActivity(System.ServiceModel.Dispatcher.WorkflowRequestContext,System.Workflow.ComponentModel.ActivityExecutionContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#FaultMessage")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#FaultMessage")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#GetParameterPropertyDescriptors(System.Collections.IDictionary)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#GetWorkflowQueue(System.IServiceProvider)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#GetWorkflowServiceAttributes(System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#GetWorkflowServiceAttributesValueOverride(System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#HandleFault(System.Workflow.ComponentModel.ActivityExecutionContext,System.Exception)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#Initialize(System.IServiceProvider)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#InitializeProperties()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#OnSequenceComplete(System.Workflow.ComponentModel.ActivityExecutionContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#OperationHelper")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#ParameterBindings")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#QueueInitializationMode")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#QueueInitializationMode")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#RemoveRequestContext()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#RequestContext")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#RequestContext")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#RestoreRequestContext()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#ServiceOperationInfo")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#ServiceOperationInfo")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#SetWorkflowServiceAttributes(System.Object,System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#System.ServiceModel.Description.IServiceDescriptionBuilder.BuildServiceDescription(System.ServiceModel.Description.ServiceDescriptionContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#System.Workflow.Activities.IEventActivity.QueueName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#System.Workflow.Activities.IEventActivity.Subscribe(System.Workflow.ComponentModel.ActivityExecutionContext,System.Workflow.ComponentModel.IActivityEventListener`1<System.Workflow.ComponentModel.QueueEventArgs>)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#System.Workflow.Activities.IEventActivity.Unsubscribe(System.Workflow.ComponentModel.ActivityExecutionContext,System.Workflow.ComponentModel.IActivityEventListener`1<System.Workflow.ComponentModel.QueueEventArgs>)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#System.Workflow.ComponentModel.IActivityEventListener`1<System.Workflow.ComponentModel.QueueEventArgs>.OnEvent(System.Object,System.Workflow.ComponentModel.QueueEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#OperationValidation")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#OperationValidation")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity+ReceiveOperationInfoHelper.#.ctor(System.IServiceProvider,System.Workflow.Activities.ReceiveActivity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity+ReceiveOperationInfoHelper.#GetOutputs(System.Workflow.Activities.ReceiveActivity,System.Object[]&)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity+ReceiveOperationInfoHelper.#PopulateInputs(System.Workflow.Activities.ReceiveActivity,System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity+SecurityShim.#System.IDisposable.Dispose()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity+SecurityShim.#System.Workflow.ComponentModel.IActivityEventListener`1<System.Workflow.ComponentModel.QueueEventArgs>.OnEvent(System.Object,System.Workflow.ComponentModel.QueueEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity+ValidationShim.#EvaluateSecurityConstraints(System.IServiceProvider,System.Workflow.Activities.ReceiveActivity,System.ServiceModel.Dispatcher.WorkflowRequestContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity+ValidationShim.#System.IDisposable.Dispose()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity+ValidationShim.#System.Workflow.ComponentModel.IActivityEventListener`1<System.Workflow.ComponentModel.QueueEventArgs>.OnEvent(System.Object,System.Workflow.ComponentModel.QueueEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesigner.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesigner.#Initialize(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesigner.#OnActivityChanged(System.Workflow.ComponentModel.Design.ActivityChangedEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesigner.#OnMouseDoubleClick(System.Windows.Forms.MouseEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesigner.#OnPaint(System.Workflow.ComponentModel.Design.ActivityDesignerPaintEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesigner.#PreFilterProperties(System.Collections.IDictionary)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesigner.#ReceiveActivity")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesigner.#Text")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesigner.#Verbs")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesignerTheme.#.ctor(System.Workflow.ComponentModel.Design.WorkflowTheme)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityValidator.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityValidator.#Validate(System.Workflow.ComponentModel.Compiler.ValidationManager,System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ReceiveContextCollection.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2117:AptcaTypesShouldOnlyExtendAptcaBaseTypes", Scope = "type", Target = "System.Workflow.Activities.SendActivity")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#.ctor(System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#ChannelToken")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#ChannelToken")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#Context")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#Context")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#CustomAddress")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#CustomAddress")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#Execute(System.Workflow.ComponentModel.ActivityExecutionContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#GetParameterPropertyDescriptors(System.Collections.IDictionary)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#InitializeProperties()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#InvokeOperation(System.Reflection.MethodInfo,System.ServiceModel.Channels.IChannel,System.Object[])")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#OperationHelper")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#ParameterBindings")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#ServiceOperationInfo")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#ServiceOperationInfo")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#AfterResponse")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#AfterResponse")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#BeforeSend")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#BeforeSend")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity+SendOperationInfoHelper.#.ctor(System.IServiceProvider,System.Workflow.Activities.SendActivity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity+SendOperationInfoHelper.#GetInputs(System.Workflow.Activities.SendActivity,System.Workflow.ComponentModel.WorkflowParameterBindingCollection)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivity+SendOperationInfoHelper.#PopulateOutputs(System.Workflow.Activities.SendActivity,System.Workflow.ComponentModel.WorkflowParameterBindingCollection,System.Object[],System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivityDesigner.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivityDesigner.#OnActivityChanged(System.Workflow.ComponentModel.Design.ActivityChangedEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivityDesigner.#OnMouseDoubleClick(System.Windows.Forms.MouseEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivityDesigner.#OnPaint(System.Workflow.ComponentModel.Design.ActivityDesignerPaintEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivityDesigner.#PreFilterProperties(System.Collections.IDictionary)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivityDesigner.#SendActivity")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivityDesigner.#Text")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivityDesigner.#Verbs")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivityDesignerTheme.#.ctor(System.Workflow.ComponentModel.Design.WorkflowTheme)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivityValidator.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.SendActivityValidator.#Validate(System.Workflow.ComponentModel.Compiler.ValidationManager,System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ServiceOperationHelpers.#GetOperationName(System.IServiceProvider,System.Reflection.MethodInfo)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ServiceOperationHelpers.#GetServiceOperationInfoPropertyDescriptor(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ServiceOperationHelpers.#IsAsyncOperation(System.IServiceProvider,System.Reflection.MethodInfo)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ServiceOperationHelpers.#IsInitiatingOperation(System.IServiceProvider,System.Reflection.MethodInfo)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ServiceOperationHelpers.#IsValidServiceContract(System.Type)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ServiceOperationHelpers.#IsValidServiceOperation(System.Reflection.MethodInfo)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ServiceOperationHelpers.#TryGetArgumentValueAs`1(System.IServiceProvider,System.Workflow.ComponentModel.Compiler.AttributeInfo,System.String,!!0&)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2117:AptcaTypesShouldOnlyExtendAptcaBaseTypes", Scope = "type", Target = "System.Workflow.Activities.TypedOperationInfo")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.TypedOperationInfo.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.TypedOperationInfo.#ContractType")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.TypedOperationInfo.#ContractType")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.TypedOperationInfo.#GetAttributePropertyValue`1(System.IServiceProvider,System.Workflow.ComponentModel.Compiler.AttributeInfo,System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.TypedOperationInfo.#GetContractType(System.IServiceProvider)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.TypedOperationInfo.#GetIsOneWay(System.IServiceProvider)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.TypedOperationInfo.#GetMethodInfo(System.IServiceProvider)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.TypedOperationInfo.#InternalGetMethodInfo(System.IServiceProvider,System.Type)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ValidationHelper.#ValidateAllServiceOperationsImplemented(System.Workflow.ComponentModel.Compiler.ValidationManager,System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ValidationHelper.#ValidateChannelToken(System.Workflow.Activities.SendActivity,System.Workflow.ComponentModel.Compiler.ValidationManager)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ValidationHelper.#ValidateContextToken(System.Workflow.ComponentModel.Activity,System.Workflow.Activities.ContextToken,System.Workflow.ComponentModel.Compiler.ValidationManager)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ValidationHelper.#ValidateOperationInfo(System.Workflow.ComponentModel.Activity,System.Workflow.Activities.OperationInfoBase,System.Workflow.ComponentModel.Compiler.ValidationManager)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ValidationHelper.#ValidateParameterBindings(System.Workflow.ComponentModel.Activity,System.Workflow.Activities.OperationInfoBase,System.Workflow.ComponentModel.WorkflowParameterBindingCollection,System.Workflow.ComponentModel.Compiler.ValidationManager)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.ValidationHelper.#ValidateServiceModelAttributes(System.Workflow.ComponentModel.Activity,System.Type,System.Reflection.MethodInfo,System.Workflow.ComponentModel.Compiler.ValidationManager)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2117:AptcaTypesShouldOnlyExtendAptcaBaseTypes", Scope = "type", Target = "System.Workflow.Activities.WorkflowServiceAttributes")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#AddressFilterMode")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#AddressFilterMode")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#ConfigurationName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#ConfigurationName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#IgnoreExtensionDataObject")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#IgnoreExtensionDataObject")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#IncludeExceptionDetailInFaults")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#IncludeExceptionDetailInFaults")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#MaxItemsInObjectGraph")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#MaxItemsInObjectGraph")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#Name")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#Name")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#Namespace")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#Namespace")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#UseSynchronizationContext")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#UseSynchronizationContext")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#ValidateMustUnderstand")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#ValidateMustUnderstand")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2117:AptcaTypesShouldOnlyExtendAptcaBaseTypes", Scope = "type", Target = "System.Workflow.Activities.WorkflowServiceAttributesDynamicPropertyValidator")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributesDynamicPropertyValidator.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributesDynamicPropertyValidator.#Validate(System.Workflow.ComponentModel.Compiler.ValidationManager,System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributesPropertyProviderExtender.#CanExtend(System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributesPropertyProviderExtender.#GetWorkflowServiceAttributes(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributesPropertyProviderExtender.#SetWorkflowServiceAttributes(System.Workflow.ComponentModel.Activity,System.Workflow.Activities.WorkflowServiceAttributes)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.Design.OperationPickerDialog.#GetHelp()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.Design.OperationPickerDialog.#ImportContractButtonClicked(System.Object,System.EventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.Design.OperationPickerDialog.#ServiceContractValidating(System.Object,System.ComponentModel.CancelEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.Design.OperationPickerDialog.#ServiceOperationValidating(System.Object,System.ComponentModel.CancelEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.Design.RichListBox.#OnSelectedIndexChanged(System.EventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceContractDetailViewControl.#UpdateImplementingActivities(System.Workflow.Activities.Design.ServiceContractListItem)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceOperationDetailViewControl.#BrowseAndSelectType(System.Windows.Forms.DataGridViewCell)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceOperationDetailViewControl.#parametersGrid_CellValidating(System.Object,System.Windows.Forms.DataGridViewCellValidatingEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceOperationDetailViewControl.#TrySelectType(System.Workflow.ComponentModel.Design.TypeBrowserDialog,System.Windows.Forms.DataGridViewCell)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceOperationDetailViewControl.#UpdateImplementingActivities()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceOperationUIEditor.#TryPickOperation(System.IServiceProvider,System.Workflow.ComponentModel.Activity,System.Workflow.Activities.OperationInfoBase,System.Workflow.Activities.OperationInfoBase&)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.ComponentModel.Design.ActivityDesignerHighlighter.#GetService(System.Type)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.ComponentModel.Design.ActivityDesignerHighlighter.#Highlight(System.Collections.Generic.List`1<System.Workflow.ComponentModel.Design.ActivityDesigner>)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.ComponentModel.Design.ActivityDesignerHighlighter.#messageFilter_KeyDown(System.Object,System.Windows.Forms.KeyEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.ComponentModel.Design.ActivityDesignerHighlighter.#messageFilter_MouseDown(System.Object,System.Windows.Forms.MouseEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.ComponentModel.Design.ActivityDesignerHighlighter.#RemoveCurrentHighlight()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.ComponentModel.Design.ActivityDesignerHighlighter+DesignerHighlighterMesageFilter.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.ComponentModel.Design.ActivityDesignerHighlighter+HighlightGlyphProvider.#GetGlyphs(System.Workflow.ComponentModel.Design.ActivityDesigner)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.ComponentModel.Design.DesignerPainter.#GetRootDesigner(System.Workflow.ComponentModel.Design.ActivityDesigner)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.ComponentModel.Design.DesignerPainter.#IsBranchVisible(System.Workflow.ComponentModel.Design.ActivityDesigner)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.ComponentModel.Design.DesignerPainter.#IsInsidePreviewDesignerBranch(System.Workflow.ComponentModel.Design.ActivityDesigner,System.Boolean&)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.ComponentModel.Design.DesignerPainter.#PaintDesigner(System.Workflow.ComponentModel.Design.ActivityDesigner,System.Workflow.ComponentModel.Design.ActivityDesignerPaintEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.ComponentModel.Design.DesignerPainter.#PaintDesignerInternal(System.Workflow.ComponentModel.Design.ActivityDesigner,System.Workflow.ComponentModel.Design.ActivityDesignerPaintEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.ComponentModel.Design.FindSimilarActivitiesVerb`1.#.ctor(System.Workflow.ComponentModel.Design.ActivityDesigner,System.Workflow.ComponentModel.Design.ActivityComparer`1<!0>,System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.ComponentModel.Design.FindSimilarActivitiesVerb`1.#GetMatchingActivityDesigners(System.Workflow.ComponentModel.Design.ActivityDesigner)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.ComponentModel.Design.FindSimilarActivitiesVerb`1.#GetService(System.Type)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.ComponentModel.Design.FindSimilarActivitiesVerb`1.#OnWalkerFoundActivity(System.Workflow.ComponentModel.Walker,System.Workflow.ComponentModel.WalkerEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.ComponentModel.Design.HighlightOverlayGlyph.#.ctor(System.Drawing.Rectangle,System.Collections.Generic.List`1<System.Workflow.ComponentModel.Design.ActivityDesigner>)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.ComponentModel.Design.HighlightOverlayGlyph.#OnPaint(System.Drawing.Graphics,System.Boolean,System.Workflow.ComponentModel.Design.AmbientTheme,System.Workflow.ComponentModel.Design.ActivityDesigner)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.CompiledWorkflowDefinitionContext.#CreateWorkflow(System.Guid)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.StreamedWorkflowDefinitionContext.#ConfigurationName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.StreamedWorkflowDefinitionContext.#CreateWorkflow(System.Guid)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.StreamedWorkflowDefinitionContext.#DeSerizalizeDefinition(System.Byte[],System.Byte[])")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.StreamedWorkflowDefinitionContext.#OnRegister()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.StreamedWorkflowDefinitionContext.#OnValidate(System.Workflow.ComponentModel.Compiler.ValidationErrorCollection)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.StreamedWorkflowDefinitionContext.#WorkflowName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.WorkflowDefinitionContext.#CreateTypeProvider(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.WorkflowDefinitionContext.#Register(System.Workflow.Runtime.WorkflowRuntime,System.Boolean)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.WorkflowDefinitionContext.#ValidateDefinition()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2117:AptcaTypesShouldOnlyExtendAptcaBaseTypes", Scope = "type", Target = "System.Workflow.Runtime.Hosting.ChannelManagerService")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.Hosting.ChannelManagerService.#.ctor(System.Collections.Specialized.NameValueCollection)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.Hosting.ChannelManagerService.#.ctor(System.ServiceModel.Channels.ChannelPoolSettings,System.Collections.Generic.IList`1<System.ServiceModel.Description.ServiceEndpoint>)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.Hosting.ChannelManagerService.#ApplyLogicalChannelContext(System.Workflow.Activities.LogicalChannel)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.Hosting.ChannelManagerService.#ReturnChannel(System.Workflow.Runtime.Hosting.ChannelManagerService+PooledChannelTicket)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.Hosting.ChannelManagerService.#Start()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.Hosting.ChannelManagerService.#Stop()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.Hosting.ChannelManagerService.#Take(System.Workflow.ComponentModel.ActivityExecutionContext,System.Guid,System.Workflow.Activities.LogicalChannel)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.Hosting.ChannelManagerService.#TakeChannel(System.Guid,System.Workflow.Activities.LogicalChannel)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.Hosting.ChannelManagerService.#UpdateLogicalChannelContext(System.Workflow.Activities.LogicalChannel)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.Hosting.SynchronizationContextWorkflowSchedulerService.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.Hosting.SynchronizationContextWorkflowSchedulerService.#Cancel(System.Guid)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.Hosting.SynchronizationContextWorkflowSchedulerService.#Schedule(System.Threading.WaitCallback,System.Guid)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2116:AptcaMethodsShouldOnlyCallAptcaMethods", Scope = "member", Target = "System.Workflow.Runtime.Hosting.SynchronizationContextWorkflowSchedulerService.#Schedule(System.Threading.WaitCallback,System.Guid,System.DateTime,System.Guid)")]
|
|
|
|
// System.WorkflowServices.dll is an APTCA, Level1 assembly.
|
|
// The following FxCop security violations are suppressed in order to reduce risk, and to maintain the same exact security characteristics of the same assembly shipped in Dev10.
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.WorkflowServiceHost.#.ctor(System.IO.Stream,System.IO.Stream,System.Workflow.ComponentModel.Compiler.ITypeProvider,System.Uri[])")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.WorkflowServiceHost.#.ctor(System.String,System.String,System.Workflow.ComponentModel.Compiler.ITypeProvider,System.Uri[])")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.WorkflowServiceHost.#OnClosing()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Activation.WorkflowServiceHostFactory.#GetTypeFromString(System.String,System.Uri[])")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Activities.ExternalDataExchangeClient.#RaiseEvent(System.Workflow.Activities.ExternalDataEventArgs,System.IComparable,System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Activities.WorkflowClientDeliverMessageWrapper.#DeliverMessage(System.Workflow.Activities.ExternalDataEventArgs,System.IComparable,System.Object,System.Object,System.Workflow.Runtime.IPendingWork)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Activities.WorkflowClientDeliverMessageWrapper.#PrepareEventArgsArray(System.Object,System.Workflow.Activities.ExternalDataEventArgs,System.Object&,System.Workflow.Runtime.IPendingWork&)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Activities.WorkflowRuntimeServicesExtensionProvider.#GetService(System.Type)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Activities.WorkflowRuntimeServicesExtensionProvider.#PopulateExtensions(System.ServiceModel.Activities.WorkflowServiceHost,System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2141:TransparentMethodsMustNotSatisfyLinkDemandsFxCopRule", Scope = "member", Target = "System.ServiceModel.Activities.Description.WorkflowRuntimeEndpoint.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Configuration.ExtendedWorkflowRuntimeServiceElementCollection.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Configuration.ExtendedWorkflowRuntimeServiceElementCollection.#Remove(System.Workflow.Runtime.Configuration.WorkflowRuntimeServiceElement)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Configuration.WorkflowRuntimeElement.#CreateBehavior()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Configuration.WorkflowRuntimeElement.#CreateWorkflowRuntimeSection()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Description.DescriptionCreator.#BuildServiceDescription(System.Collections.Generic.IDictionary`2<System.String,System.ServiceModel.Description.ContractDescription>&,System.Collections.Generic.IList`1<System.Type>&)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Description.WorkflowRuntimeBehavior.#.ctor(System.Workflow.Runtime.WorkflowRuntime,System.TimeSpan,System.Boolean)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Description.WorkflowRuntimeBehavior.#ApplyDispatchBehavior(System.ServiceModel.Description.ServiceDescription,System.ServiceModel.ServiceHostBase)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Description.WorkflowRuntimeBehavior.#DefaultWorkflowRuntimeSection")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Description.WorkflowRuntimeBehavior.#ValidateWorkflowRuntime(System.Workflow.Runtime.WorkflowRuntime)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Description.WorkflowRuntimeBehavior.#WorkflowRuntime")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Description.WorkflowServiceBehavior.#ApplyDispatchBehavior(System.ServiceModel.Description.ServiceDescription,System.ServiceModel.ServiceHostBase)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Description.WorkflowServiceBehavior+SkipUnloadOnFirstIdleWorkflowPersistenceService.#.ctor(System.Workflow.Runtime.Hosting.WorkflowPersistenceService)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Description.WorkflowServiceBehavior+SkipUnloadOnFirstIdleWorkflowPersistenceService.#LoadCompletedContextActivity(System.Guid,System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Description.WorkflowServiceBehavior+SkipUnloadOnFirstIdleWorkflowPersistenceService.#LoadWorkflowInstanceState(System.Guid)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Description.WorkflowServiceBehavior+SkipUnloadOnFirstIdleWorkflowPersistenceService.#SaveCompletedContextActivity(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Description.WorkflowServiceBehavior+SkipUnloadOnFirstIdleWorkflowPersistenceService.#SaveWorkflowInstanceState(System.Workflow.ComponentModel.Activity,System.Boolean)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Description.WorkflowServiceBehavior+SkipUnloadOnFirstIdleWorkflowPersistenceService.#Start()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Description.WorkflowServiceBehavior+SkipUnloadOnFirstIdleWorkflowPersistenceService.#Stop()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Description.WorkflowServiceBehavior+SkipUnloadOnFirstIdleWorkflowPersistenceService.#UnloadOnIdle(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Description.WorkflowServiceBehavior+SkipUnloadOnFirstIdleWorkflowPersistenceService.#UnlockWorkflowInstanceState(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowDurableInstance.#GetWorkflowInstance(System.Boolean)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension.#.ctor(System.Workflow.Runtime.WorkflowRuntime,System.TimeSpan,System.Boolean)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension.#OnTimer(System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension.#OnWorkflowAborted(System.Object,System.Workflow.Runtime.WorkflowEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension.#OnWorkflowCompleted(System.Object,System.Workflow.Runtime.WorkflowCompletedEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension.#OnWorkflowIdled(System.Object,System.Workflow.Runtime.WorkflowEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension.#OnWorkflowLoaded(System.Object,System.Workflow.Runtime.WorkflowEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension.#OnWorkflowStarted(System.Object,System.Workflow.Runtime.WorkflowEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension.#OnWorkflowTerminated(System.Object,System.Workflow.Runtime.WorkflowTerminatedEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension.#OnWorkflowUnloaded(System.Object,System.Workflow.Runtime.WorkflowEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension.#RegisterEvents()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowOperationAsyncResult.#.ctor(System.ServiceModel.Dispatcher.WorkflowOperationInvoker,System.ServiceModel.Dispatcher.WorkflowDurableInstance,System.Object[],System.AsyncCallback,System.Object,System.Int64)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowOperationAsyncResult.#DoWork(System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowOperationAsyncResult+AsyncCallbackState.#.ctor(System.ServiceModel.Dispatcher.WorkflowRequestContext,System.Workflow.Runtime.WorkflowInstance,System.Threading.SynchronizationContext,System.ServiceModel.Dispatcher.WorkflowInstanceLifetimeManagerExtension,System.IComparable)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowOperationAsyncResult+AsyncCallbackState.#WorkflowInstance")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowOperationFault.#.ctor(System.Messaging.MessageQueueErrorCode)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowOperationInvoker.#.ctor(System.ServiceModel.Description.OperationDescription,System.ServiceModel.Description.WorkflowOperationBehavior,System.Workflow.Runtime.WorkflowRuntime,System.ServiceModel.Dispatcher.DispatchRuntime)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2149:TransparentMethodsMustNotCallNativeCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowOperationInvoker.#InvokeBegin(System.Object,System.Object[],System.AsyncCallback,System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2138:TransparentMethodsMustNotCallSuppressUnmanagedCodeSecurityMethodsFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowOperationInvoker.#InvokeBegin(System.Object,System.Object[],System.AsyncCallback,System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2149:TransparentMethodsMustNotCallNativeCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowOperationInvoker.#InvokeEnd(System.Object,System.Object[]&,System.IAsyncResult)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2138:TransparentMethodsMustNotCallSuppressUnmanagedCodeSecurityMethodsFxCopRule", Scope = "member", Target = "System.ServiceModel.Dispatcher.WorkflowOperationInvoker.#InvokeEnd(System.Object,System.Object[]&,System.IAsyncResult)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase", Scope = "member", Target = "System.ServiceModel.Persistence.InstanceLockException.#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Persistence.InstanceLockException.#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2143:TransparentMethodsShouldNotDemandFxCopRule", Scope = "member", Target = "System.ServiceModel.Persistence.InstanceLockException.#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase", Scope = "member", Target = "System.ServiceModel.Persistence.InstanceNotFoundException.#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.ServiceModel.Persistence.InstanceNotFoundException.#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2143:TransparentMethodsShouldNotDemandFxCopRule", Scope = "member", Target = "System.ServiceModel.Persistence.InstanceNotFoundException.#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#.ctor(System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#EndpointName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#EndpointName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#GetEnclosingCompositeActivities(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#GetLogicalChannel(System.Workflow.ComponentModel.Activity,System.String,System.String,System.Type)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#GetLogicalChannel(System.Workflow.ComponentModel.Activity,System.Workflow.Activities.ChannelToken,System.Type)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#Name")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#Name")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#OwnerActivityName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#OwnerActivityName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#Register(System.Workflow.ComponentModel.Activity,System.Workflow.Activities.ChannelToken,System.Type)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ChannelToken.#System.Workflow.ComponentModel.Design.IPropertyValueProvider.GetPropertyValues(System.ComponentModel.ITypeDescriptorContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ChannelTokenTypeConverter.#GetContainedActivities(System.Workflow.ComponentModel.CompositeActivity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ChannelTokenTypeConverter.#GetPreceedingActivities(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ChannelTokenTypeConverter.#GetStandardValues(System.ComponentModel.ITypeDescriptorContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#.ctor(System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#GetEnclosingCompositeActivities(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#GetReceiveContext(System.Workflow.ComponentModel.Activity,System.String,System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#GetRootReceiveContext(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#Name")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#Name")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#OwnerActivityName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#OwnerActivityName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#RegisterReceiveContext(System.Workflow.Activities.ReceiveActivity,System.Guid,System.String,System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#RegisterRootReceiveContext(System.Workflow.ComponentModel.Activity,System.Guid)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ContextToken.#System.Workflow.ComponentModel.Design.IPropertyValueProvider.GetPropertyValues(System.ComponentModel.ITypeDescriptorContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ContextTokenTypeConverter.#GetContainedActivities(System.Workflow.ComponentModel.CompositeActivity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ContextTokenTypeConverter.#GetPreceedingActivities(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ContextTokenTypeConverter.#GetStandardValues(System.ComponentModel.ITypeDescriptorContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ContractMethodParameterInfo.#.ctor(System.Workflow.Activities.ContractMethodInfo,System.Workflow.Activities.OperationParameterInfo)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.DynamicContractTypeBuilder.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.DynamicContractTypeBuilder.#BuildContractTypes(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.DynamicContractTypeBuilder.#GetContractType(System.Workflow.Activities.OperationInfo,System.Workflow.Activities.ReceiveActivity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.LogicalChannelCollection.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#ContractName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#ContractName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#GetContractType(System.IServiceProvider)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#GetMethodInfo(System.IServiceProvider)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#IsOneWay")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#IsOneWay")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#Parameters")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#ProtectionLevel")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationInfo.#ProtectionLevel")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationInfoBase.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationInfoBase.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationInfoBase.#IsReadOnly")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationInfoBase.#Name")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationInfoBase.#Name")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationInfoBase.#PrincipalPermissionName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationInfoBase.#PrincipalPermissionName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationInfoBase.#PrincipalPermissionRole")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationInfoBase.#PrincipalPermissionRole")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#.ctor(System.Reflection.ParameterInfo)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#.ctor(System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#Attributes")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#Attributes")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#Name")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#Name")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#ParameterType")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#ParameterType")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#Position")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.OperationParameterInfo.#Position")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#.ctor(System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#CacheRequestContext(System.ServiceModel.Dispatcher.WorkflowRequestContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#Cancel(System.Workflow.ComponentModel.ActivityExecutionContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#CanCreateInstance")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#CanCreateInstance")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#ContextToken")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#ContextToken")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#Dispose(System.Boolean)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#Execute(System.Workflow.ComponentModel.ActivityExecutionContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#ExecuteActivity(System.ServiceModel.Dispatcher.WorkflowRequestContext,System.Workflow.ComponentModel.ActivityExecutionContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#FaultMessage")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#FaultMessage")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#GetContext(System.Workflow.ComponentModel.Activity,System.String,System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#GetContext(System.Workflow.ComponentModel.Activity,System.Workflow.Activities.ContextToken)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#GetParameterPropertyDescriptors(System.Collections.IDictionary)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#GetRootContext(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#GetWorkflowQueue(System.IServiceProvider)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#GetWorkflowServiceAttributes(System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#GetWorkflowServiceAttributesValueOverride(System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#HandleFault(System.Workflow.ComponentModel.ActivityExecutionContext,System.Exception)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#Initialize(System.IServiceProvider)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#InitializeProperties()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#OnSequenceComplete(System.Workflow.ComponentModel.ActivityExecutionContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#OperationHelper")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#ParameterBindings")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#QueueInitializationMode")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#QueueInitializationMode")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#RemoveRequestContext()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#RequestContext")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#RequestContext")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#RestoreRequestContext()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#ServiceOperationInfo")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#ServiceOperationInfo")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#SetQueueInitializationMode()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#SetWorkflowServiceAttributes(System.Object,System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#System.ServiceModel.Description.IServiceDescriptionBuilder.BuildServiceDescription(System.ServiceModel.Description.ServiceDescriptionContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#System.Workflow.Activities.IEventActivity.QueueName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#System.Workflow.Activities.IEventActivity.QueueName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#System.Workflow.Activities.IEventActivity.Subscribe(System.Workflow.ComponentModel.ActivityExecutionContext,System.Workflow.ComponentModel.IActivityEventListener`1<System.Workflow.ComponentModel.QueueEventArgs>)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#System.Workflow.Activities.IEventActivity.Subscribe(System.Workflow.ComponentModel.ActivityExecutionContext,System.Workflow.ComponentModel.IActivityEventListener`1<System.Workflow.ComponentModel.QueueEventArgs>)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#System.Workflow.Activities.IEventActivity.Unsubscribe(System.Workflow.ComponentModel.ActivityExecutionContext,System.Workflow.ComponentModel.IActivityEventListener`1<System.Workflow.ComponentModel.QueueEventArgs>)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#System.Workflow.Activities.IEventActivity.Unsubscribe(System.Workflow.ComponentModel.ActivityExecutionContext,System.Workflow.ComponentModel.IActivityEventListener`1<System.Workflow.ComponentModel.QueueEventArgs>)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#System.Workflow.ComponentModel.IActivityEventListener`1<System.Workflow.ComponentModel.QueueEventArgs>.OnEvent(System.Object,System.Workflow.ComponentModel.QueueEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#System.Workflow.ComponentModel.IActivityEventListener`1<System.Workflow.ComponentModel.QueueEventArgs>.OnEvent(System.Object,System.Workflow.ComponentModel.QueueEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#OperationValidation")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity.#OperationValidation")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity+ReceiveOperationInfoHelper.#.ctor(System.IServiceProvider,System.Workflow.Activities.ReceiveActivity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity+ReceiveOperationInfoHelper.#GetOutputs(System.Workflow.Activities.ReceiveActivity,System.Object[]&)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity+ReceiveOperationInfoHelper.#PopulateInputs(System.Workflow.Activities.ReceiveActivity,System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity+SecurityShim.#System.IDisposable.Dispose()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity+SecurityShim.#System.Workflow.ComponentModel.IActivityEventListener`1<System.Workflow.ComponentModel.QueueEventArgs>.OnEvent(System.Object,System.Workflow.ComponentModel.QueueEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity+ValidationShim.#.ctor(System.Workflow.Activities.ReceiveActivity,System.Workflow.ComponentModel.IActivityEventListener`1<System.Workflow.ComponentModel.QueueEventArgs>)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity+ValidationShim.#EvaluateSecurityConstraints(System.IServiceProvider,System.Workflow.Activities.ReceiveActivity,System.ServiceModel.Dispatcher.WorkflowRequestContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity+ValidationShim.#System.IDisposable.Dispose()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivity+ValidationShim.#System.Workflow.ComponentModel.IActivityEventListener`1<System.Workflow.ComponentModel.QueueEventArgs>.OnEvent(System.Object,System.Workflow.ComponentModel.QueueEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesigner.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesigner.#Initialize(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesigner.#OnActivityChanged(System.Workflow.ComponentModel.Design.ActivityChangedEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesigner.#OnMouseDoubleClick(System.Windows.Forms.MouseEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesigner.#OnPaint(System.Workflow.ComponentModel.Design.ActivityDesignerPaintEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesigner.#PreFilterProperties(System.Collections.IDictionary)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesigner.#ReceiveActivity")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesigner.#Text")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesigner.#Verbs")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2141:TransparentMethodsMustNotSatisfyLinkDemandsFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesigner.#Verbs")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityDesignerTheme.#.ctor(System.Workflow.ComponentModel.Design.WorkflowTheme)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityValidator.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityValidator.#Validate(System.Workflow.ComponentModel.Compiler.ValidationManager,System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2141:TransparentMethodsMustNotSatisfyLinkDemandsFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveActivityValidator.#Validate(System.Workflow.ComponentModel.Compiler.ValidationManager,System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ReceiveContextCollection.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#.ctor(System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#ChannelToken")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#ChannelToken")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#Context")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#Context")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#CustomAddress")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#CustomAddress")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#Execute(System.Workflow.ComponentModel.ActivityExecutionContext)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#GetContext(System.Workflow.ComponentModel.Activity,System.String,System.String,System.Type)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#GetContext(System.Workflow.ComponentModel.Activity,System.Workflow.Activities.ChannelToken,System.Type)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#GetParameterPropertyDescriptors(System.Collections.IDictionary)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#InitializeProperties()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#InvokeOperation(System.Reflection.MethodInfo,System.ServiceModel.Channels.IChannel,System.Object[])")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#OperationHelper")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#ParameterBindings")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#ServiceOperationInfo")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#ServiceOperationInfo")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#SetContext(System.Workflow.ComponentModel.Activity,System.String,System.String,System.Type,System.Collections.Generic.IDictionary`2<System.String,System.String>)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#SetContext(System.Workflow.ComponentModel.Activity,System.Workflow.Activities.ChannelToken,System.Type,System.Collections.Generic.IDictionary`2<System.String,System.String>)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#AfterResponse")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#AfterResponse")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#BeforeSend")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity.#BeforeSend")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity+SendOperationInfoHelper.#.ctor(System.IServiceProvider,System.Workflow.Activities.SendActivity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity+SendOperationInfoHelper.#GetInputs(System.Workflow.Activities.SendActivity,System.Workflow.ComponentModel.WorkflowParameterBindingCollection)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivity+SendOperationInfoHelper.#PopulateOutputs(System.Workflow.Activities.SendActivity,System.Workflow.ComponentModel.WorkflowParameterBindingCollection,System.Object[],System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivityDesigner.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivityDesigner.#OnActivityChanged(System.Workflow.ComponentModel.Design.ActivityChangedEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivityDesigner.#OnMouseDoubleClick(System.Windows.Forms.MouseEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivityDesigner.#OnPaint(System.Workflow.ComponentModel.Design.ActivityDesignerPaintEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivityDesigner.#PreFilterProperties(System.Collections.IDictionary)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivityDesigner.#SendActivity")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivityDesigner.#Text")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivityDesigner.#Verbs")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2141:TransparentMethodsMustNotSatisfyLinkDemandsFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivityDesigner.#Verbs")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivityDesignerTheme.#.ctor(System.Workflow.ComponentModel.Design.WorkflowTheme)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivityValidator.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.SendActivityValidator.#Validate(System.Workflow.ComponentModel.Compiler.ValidationManager,System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ServiceOperationHelpers.#GetAttributePropertyNames(System.Workflow.ComponentModel.Compiler.AttributeInfo)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ServiceOperationHelpers.#GetContractSessionMode(System.IServiceProvider,System.Workflow.ComponentModel.Compiler.AttributeInfo)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ServiceOperationHelpers.#GetOperationAsyncPattern(System.IServiceProvider,System.Workflow.ComponentModel.Compiler.AttributeInfo)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ServiceOperationHelpers.#GetOperationName(System.IServiceProvider,System.Reflection.MethodInfo)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ServiceOperationHelpers.#GetServiceOperationInfoPropertyDescriptor(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ServiceOperationHelpers.#IsAsyncOperation(System.IServiceProvider,System.Reflection.MethodInfo)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ServiceOperationHelpers.#IsInitiatingOperation(System.IServiceProvider,System.Reflection.MethodInfo)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ServiceOperationHelpers.#IsInitiatingOperationContract(System.IServiceProvider,System.Workflow.ComponentModel.Compiler.AttributeInfo)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ServiceOperationHelpers.#IsValidServiceContract(System.Type)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ServiceOperationHelpers.#IsValidServiceOperation(System.Reflection.MethodInfo)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ServiceOperationHelpers.#TryGetArgumentValueAs`1(System.IServiceProvider,System.Workflow.ComponentModel.Compiler.AttributeInfo,System.String,!!0&)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.TypedOperationInfo.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.TypedOperationInfo.#ContractType")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.TypedOperationInfo.#ContractType")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.TypedOperationInfo.#GetAttributePropertyNames(System.Workflow.ComponentModel.Compiler.AttributeInfo)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.TypedOperationInfo.#GetAttributePropertyValue`1(System.IServiceProvider,System.Workflow.ComponentModel.Compiler.AttributeInfo,System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.TypedOperationInfo.#GetContractType(System.IServiceProvider)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.TypedOperationInfo.#GetIsOneWay(System.IServiceProvider)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.TypedOperationInfo.#GetMethodInfo(System.IServiceProvider)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.TypedOperationInfo.#InternalGetMethodInfo(System.IServiceProvider,System.Type)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ValidationHelper.#GetActivities`1(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ValidationHelper.#ValidateAllServiceOperationsImplemented(System.Workflow.ComponentModel.Compiler.ValidationManager,System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2141:TransparentMethodsMustNotSatisfyLinkDemandsFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ValidationHelper.#ValidateAllServiceOperationsImplemented(System.Workflow.ComponentModel.Compiler.ValidationManager,System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ValidationHelper.#ValidateChannelToken(System.Workflow.Activities.SendActivity,System.Workflow.ComponentModel.Compiler.ValidationManager)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ValidationHelper.#ValidateContextToken(System.Workflow.ComponentModel.Activity,System.Workflow.Activities.ContextToken,System.Workflow.ComponentModel.Compiler.ValidationManager)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ValidationHelper.#ValidateOperationInfo(System.Workflow.ComponentModel.Activity,System.Workflow.Activities.OperationInfoBase,System.Workflow.ComponentModel.Compiler.ValidationManager)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ValidationHelper.#ValidateParameterBindings(System.Workflow.ComponentModel.Activity,System.Workflow.Activities.OperationInfoBase,System.Workflow.ComponentModel.WorkflowParameterBindingCollection,System.Workflow.ComponentModel.Compiler.ValidationManager)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.ValidationHelper.#ValidateServiceModelAttributes(System.Workflow.ComponentModel.Activity,System.Type,System.Reflection.MethodInfo,System.Workflow.ComponentModel.Compiler.ValidationManager)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#AddressFilterMode")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#AddressFilterMode")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#ConfigurationName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#ConfigurationName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#IgnoreExtensionDataObject")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#IgnoreExtensionDataObject")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#IncludeExceptionDetailInFaults")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#IncludeExceptionDetailInFaults")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#MaxItemsInObjectGraph")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#MaxItemsInObjectGraph")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#Name")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#Name")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#Namespace")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#Namespace")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#UseSynchronizationContext")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#UseSynchronizationContext")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#ValidateMustUnderstand")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributes.#ValidateMustUnderstand")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributesDynamicPropertyValidator.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributesDynamicPropertyValidator.#Validate(System.Workflow.ComponentModel.Compiler.ValidationManager,System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributesDynamicPropertyValidator.#Validate(System.Workflow.ComponentModel.Compiler.ValidationManager,System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2141:TransparentMethodsMustNotSatisfyLinkDemandsFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributesDynamicPropertyValidator.#Validate(System.Workflow.ComponentModel.Compiler.ValidationManager,System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributesPropertyProviderExtender.#CanExtend(System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributesPropertyProviderExtender.#GetWorkflowServiceAttributes(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.WorkflowServiceAttributesPropertyProviderExtender.#SetWorkflowServiceAttributes(System.Workflow.ComponentModel.Activity,System.Workflow.Activities.WorkflowServiceAttributes)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.OperationPickerDialog.#AddServiceOperation(System.Workflow.Activities.OperationInfoBase,System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.OperationPickerDialog.#GetHelp()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.OperationPickerDialog.#ImportContractButtonClicked(System.Object,System.EventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.OperationPickerDialog.#ServiceContractValidating(System.Object,System.ComponentModel.CancelEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.OperationPickerDialog.#ServiceOperationValidating(System.Object,System.ComponentModel.CancelEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.RichListBox.#OnSelectedIndexChanged(System.EventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceContractDetailViewControl.#UpdateImplementingActivities(System.Workflow.Activities.Design.ServiceContractListItem)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceContractListItem.#AddOperation(System.Workflow.Activities.Design.ServiceOperationListItem)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceOperationDetailViewControl.#BrowseAndSelectType(System.Windows.Forms.DataGridViewCell)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2141:TransparentMethodsMustNotSatisfyLinkDemandsFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceOperationDetailViewControl.#IsValidIdentifier(System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceOperationDetailViewControl.#parametersGrid_CellValidating(System.Object,System.Windows.Forms.DataGridViewCellValidatingEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceOperationDetailViewControl.#TrySelectType(System.Workflow.ComponentModel.Design.TypeBrowserDialog,System.Windows.Forms.DataGridViewCell)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceOperationDetailViewControl.#UpdateImplementingActivities()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceOperationDetailViewControl+ParameterTypeFilterProvider.#IsExemptType(System.Type)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceOperationListItem.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceOperationListItem.#ImplementingActivities")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2141:TransparentMethodsMustNotSatisfyLinkDemandsFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceOperationUIEditor.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceOperationUIEditor.#EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2141:TransparentMethodsMustNotSatisfyLinkDemandsFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceOperationUIEditor.#EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceOperationUIEditor.#TryPickOperation(System.IServiceProvider,System.Workflow.ComponentModel.Activity,System.Workflow.Activities.OperationInfoBase,System.Workflow.Activities.OperationInfoBase&)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Activities.Design.ServiceOperationViewControl.#Item")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.ActivityDesignerHighlighter.#.ctor(System.Workflow.ComponentModel.Design.ActivityDesigner)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.ActivityDesignerHighlighter.#GetService(System.Type)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.ActivityDesignerHighlighter.#Highlight(System.Collections.Generic.List`1<System.Workflow.ComponentModel.Design.ActivityDesigner>)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.ActivityDesignerHighlighter.#messageFilter_KeyDown(System.Object,System.Windows.Forms.KeyEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.ActivityDesignerHighlighter.#messageFilter_MouseDown(System.Object,System.Windows.Forms.MouseEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.ActivityDesignerHighlighter.#RemoveCurrentHighlight()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.ActivityDesignerHighlighter+DesignerHighlighterMesageFilter.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.ActivityDesignerHighlighter+HighlightGlyphProvider.#.ctor(System.Workflow.ComponentModel.Design.ActivityDesigner,System.Collections.Generic.List`1<System.Workflow.ComponentModel.Design.ActivityDesigner>)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.ActivityDesignerHighlighter+HighlightGlyphProvider.#GetGlyphs(System.Workflow.ComponentModel.Design.ActivityDesigner)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.ActivityDesignerHighlighter+HighlightGlyphProvider.#HighlightedDesigners")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.ActivityDesignerHighlighter+HighlightGlyphProvider.#HighlightedDesigners")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.ActivityDesignerHighlighter+HighlightGlyphProvider.#RootDesigner")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.ActivityDesignerHighlighter+HighlightGlyphProvider.#RootDesigner")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.DesignerPainter.#GetRootDesigner(System.Workflow.ComponentModel.Design.ActivityDesigner)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.DesignerPainter.#IsBranchVisible(System.Workflow.ComponentModel.Design.ActivityDesigner)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.DesignerPainter.#IsInsidePreviewDesignerBranch(System.Workflow.ComponentModel.Design.ActivityDesigner,System.Boolean&)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.DesignerPainter.#PaintDesigner(System.Workflow.ComponentModel.Design.ActivityDesigner,System.Workflow.ComponentModel.Design.ActivityDesignerPaintEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.DesignerPainter.#PaintDesignerInternal(System.Workflow.ComponentModel.Design.ActivityDesigner,System.Workflow.ComponentModel.Design.ActivityDesignerPaintEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.FindSimilarActivitiesVerb`1.#.ctor(System.Workflow.ComponentModel.Design.ActivityDesigner,System.Workflow.ComponentModel.Design.ActivityComparer`1<!0>,System.String)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.FindSimilarActivitiesVerb`1.#GetDesigner(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.FindSimilarActivitiesVerb`1.#GetMatchingActivityDesigners(System.Workflow.ComponentModel.Design.ActivityDesigner)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.FindSimilarActivitiesVerb`1.#GetService(System.Type)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.FindSimilarActivitiesVerb`1.#OnInvoke(System.Object,System.EventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.FindSimilarActivitiesVerb`1.#OnWalkerFoundActivity(System.Workflow.ComponentModel.Walker,System.Workflow.ComponentModel.WalkerEventArgs)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.HighlightOverlayGlyph.#.ctor(System.Drawing.Rectangle,System.Collections.Generic.List`1<System.Workflow.ComponentModel.Design.ActivityDesigner>)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.HighlightOverlayGlyph.#HighlightedDesigners")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.HighlightOverlayGlyph.#HighlightedDesigners")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.ComponentModel.Design.HighlightOverlayGlyph.#OnPaint(System.Drawing.Graphics,System.Boolean,System.Workflow.ComponentModel.Design.AmbientTheme,System.Workflow.ComponentModel.Design.ActivityDesigner)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.CompiledWorkflowDefinitionContext.#.cctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.CompiledWorkflowDefinitionContext.#CreateWorkflow()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.CompiledWorkflowDefinitionContext.#CreateWorkflow(System.Guid)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.CompiledWorkflowDefinitionContext.#GetWorkflowDefinition()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.CompiledWorkflowDefinitionContext.#OnValidate(System.Workflow.ComponentModel.Compiler.ValidationErrorCollection)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.StreamedWorkflowDefinitionContext.#.ctor(System.IO.Stream,System.IO.Stream,System.Workflow.ComponentModel.Compiler.ITypeProvider)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.StreamedWorkflowDefinitionContext.#.ctor(System.String,System.String,System.Workflow.ComponentModel.Compiler.ITypeProvider)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.StreamedWorkflowDefinitionContext.#ConfigurationName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.StreamedWorkflowDefinitionContext.#CreateWorkflow()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.StreamedWorkflowDefinitionContext.#CreateWorkflow(System.Guid)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.StreamedWorkflowDefinitionContext.#DeSerizalizeDefinition(System.Byte[],System.Byte[])")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.StreamedWorkflowDefinitionContext.#GetWorkflowDefinition()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.StreamedWorkflowDefinitionContext.#OnRegister()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.StreamedWorkflowDefinitionContext.#OnValidate(System.Workflow.ComponentModel.Compiler.ValidationErrorCollection)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.StreamedWorkflowDefinitionContext.#WorkflowName")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.WorkflowDefinitionContext.#CreateTypeProvider(System.Workflow.ComponentModel.Activity)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.WorkflowDefinitionContext.#CreateWorkflow()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.WorkflowDefinitionContext.#CreateWorkflow(System.Guid)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.WorkflowDefinitionContext.#GetWorkflowDefinition()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.WorkflowDefinitionContext.#OnValidate(System.Workflow.ComponentModel.Compiler.ValidationErrorCollection)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.WorkflowDefinitionContext.#Register(System.Workflow.Runtime.WorkflowRuntime,System.Boolean)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.WorkflowDefinitionContext.#ValidateDefinition()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.WorkflowDefinitionContext.#WorkflowRuntime")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.Hosting.ChannelManagerService.#.ctor(System.Collections.Specialized.NameValueCollection)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.Hosting.ChannelManagerService.#.ctor(System.ServiceModel.Channels.ChannelPoolSettings,System.Collections.Generic.IList`1<System.ServiceModel.Description.ServiceEndpoint>)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.Hosting.ChannelManagerService.#ApplyLogicalChannelContext(System.Workflow.Activities.LogicalChannel)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.Hosting.ChannelManagerService.#ReturnChannel(System.Workflow.Runtime.Hosting.ChannelManagerService+PooledChannelTicket)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.Hosting.ChannelManagerService.#Start()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.Hosting.ChannelManagerService.#Stop()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.Hosting.ChannelManagerService.#Take(System.Workflow.ComponentModel.ActivityExecutionContext,System.Guid,System.Workflow.Activities.LogicalChannel)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.Hosting.ChannelManagerService.#TakeChannel(System.Guid,System.Workflow.Activities.LogicalChannel)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.Hosting.ChannelManagerService.#UpdateLogicalChannelContext(System.Workflow.Activities.LogicalChannel)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.Hosting.SynchronizationContextWorkflowSchedulerService.#.ctor()")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.Hosting.SynchronizationContextWorkflowSchedulerService.#Cancel(System.Guid)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.Hosting.SynchronizationContextWorkflowSchedulerService.#Schedule(System.Threading.WaitCallback,System.Guid)")]
|
|
[module: SuppressMessage("Microsoft.Security", "CA2140:TransparentMethodsMustNotReferenceCriticalCodeFxCopRule", Scope = "member", Target = "System.Workflow.Runtime.Hosting.SynchronizationContextWorkflowSchedulerService.#Schedule(System.Threading.WaitCallback,System.Guid,System.DateTime,System.Guid)")]
|
|
|