12 references to Value
Microsoft.DotNet.Build.Tasks.Installers (12)
src\RpmHeader.cs (11)
50
if (entry.
Value
is string str)
56
builder.AppendLine($"\t\t{((ArraySegment<byte>)entry.
Value
).Count} bytes");
57
builder.AppendLine($"\t\t{BitConverter.ToString(((ArraySegment<byte>)entry.
Value
).Array!, ((ArraySegment<byte>)entry.
Value
).Offset, ((ArraySegment<byte>)entry.
Value
).Count)}");
59
else if (entry.
Value
is IEnumerable collection)
68
builder.AppendLine($"\t\t{entry.
Value
}");
257
ArraySegment<byte> binary = (ArraySegment<byte>)entry.
Value
;
271
byte[] bytes = Encoding.UTF8.GetBytes((string)entry.
Value
);
280
string[] strings = (string[])entry.
Value
;
306
Array contents = (Array)entry.
Value
;
src\RpmPackage.cs (1)
30
if (header.Entries.First(e => e.Tag == RpmHeaderTag.PayloadCompressor).
Value
is not "gzip")