1 write to Value
System.Reflection.Metadata (1)
System\Reflection\Metadata\Signatures\CustomAttributeTypedArgument.cs (1)
14Value = value;
6 references to Value
Microsoft.Cci.Extensions (3)
Extensions\CSharp\CSharpCciExtensions.cs (3)
966ImmutableArray<CustomAttributeTypedArgument<string>> argumentValue = (ImmutableArray<CustomAttributeTypedArgument<string>>)argument.Value; 970array[i] = (byte)argumentValue[i].Value; 978return (true, argument.Value);
Microsoft.DotNet.SignTool (1)
src\Configuration.cs (1)
674return (value.FixedArguments.Length == 1) ? value.FixedArguments[0].Value as string : null;
System.Reflection.Metadata (1)
System\Reflection\Metadata\Ecma335\CustomAttributeDecoder.cs (1)
140arguments.Add(new CustomAttributeNamedArgument<TType>(name, kind, argument.Type, argument.Value));
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\CustomAttributes\Ecma\EcmaCustomAttributeHelpers.cs (1)
121public static CustomAttributeTypedArgument ToApiForm(this CustomAttributeTypedArgument<RoType> catg) => ToApiForm(catg.Type, catg.Value);