14 references to Value
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (4)
PDB\MethodDebugInfo.Portable.cs (4)
393
? DecodeHoistedLocalScopes(reader.GetBlobReader(info.
Value
))
398
? DecodeDefaultNamespace(reader.GetBlobReader(info.
Value
))
409
return DecodeDynamicFlags(reader.GetBlobReader(info.
Value
));
420
return DecodeTupleElementNames(reader.GetBlobReader(info.
Value
));
Microsoft.CodeAnalysis.Features (6)
EditAndContinue\EditAndContinueMethodDebugInfoReader.cs (1)
129
_pdbReader.GetBlobContent(cdi.
Value
) : default;
PdbSourceDocument\DocumentDebugInfoReader.cs (4)
73
if (_pdbReader.GetGuid(cdi.Kind) == PortableCustomDebugInfoKinds.SourceLink && !cdi.
Value
.IsNil)
75
var blobReader = _pdbReader.GetBlobReader(cdi.
Value
);
99
return _pdbReader.GetBlobBytes(cdi.
Value
);
115
var blobReader = _pdbReader.GetBlobReader(customDebugInformation.
Value
);
PdbSourceDocument\SymbolSourceDocumentFinder.cs (1)
165
var reader = pdbReader.GetBlobReader(cdi.
Value
);
Microsoft.CodeAnalysis.Rebuild (2)
CompilationOptionsReader.cs (2)
202
select PdbReader.GetBlobBytes(cdi.
Value
)).SingleOrDefault();
432
select PdbReader.GetBlobReader(cdi.
Value
);
Microsoft.CodeAnalysis.Test.Utilities (1)
PDB\DeterministicBuildCompilationTestHelpers.cs (1)
102
select pdbReader.GetBlobReader(cdi.
Value
)).Single();
Roslyn.Test.PdbUtilities (1)
Reader\PdbTestUtilities.cs (1)
46
=> TryGetCustomDebugInformation(pdbReader, handle, kind, out var info) ? pdbReader.GetBlobContent(info.
Value
) : default(ImmutableArray<byte>);