CustomAttributeValue<TType> Constructor

Definition

Initializes a new instance of the CustomAttributeValue<TType> structure using the specified fixed arguments and named arguments.

public:
 CustomAttributeValue(System::Collections::Immutable::ImmutableArray<System::Reflection::Metadata::CustomAttributeTypedArgument<TType>> fixedArguments, System::Collections::Immutable::ImmutableArray<System::Reflection::Metadata::CustomAttributeNamedArgument<TType>> namedArguments);
public CustomAttributeValue (System.Collections.Immutable.ImmutableArray<System.Reflection.Metadata.CustomAttributeTypedArgument<TType>> fixedArguments, System.Collections.Immutable.ImmutableArray<System.Reflection.Metadata.CustomAttributeNamedArgument<TType>> namedArguments);
new System.Reflection.Metadata.CustomAttributeValue<'ype> : System.Collections.Immutable.ImmutableArray<System.Reflection.Metadata.CustomAttributeTypedArgument<'ype>> * System.Collections.Immutable.ImmutableArray<System.Reflection.Metadata.CustomAttributeNamedArgument<'ype>> -> System.Reflection.Metadata.CustomAttributeValue<'ype>
Public Sub New (fixedArguments As ImmutableArray(Of CustomAttributeTypedArgument(Of TType)), namedArguments As ImmutableArray(Of CustomAttributeNamedArgument(Of TType)))

Parameters

fixedArguments
ImmutableArray<CustomAttributeTypedArgument<TType>>

The fixed arguments.

namedArguments
ImmutableArray<CustomAttributeNamedArgument<TType>>

The named arguments.

Applies to