15 references to EntityExpandType
System.Xml (15)
System\Xml\Core\XmlTextReaderImpl.cs (8)
3663
switch ( HandleEntityReference( false,
EntityExpandType
.OnlyGeneral, out i ) ) {
4744
switch ( HandleEntityReference( true,
EntityExpandType
.All, out pos ) ) {
5141
switch ( HandleEntityReference( false,
EntityExpandType
.All, out pos ) ) {
5416
private EntityType HandleEntityReference( bool isInAttributeValue,
EntityExpandType
expandType, out int charRefEndPos ) {
5428
charRefEndPos = ParseNumericCharRef( expandType !=
EntityExpandType
.OnlyGeneral, null, out entityType );
5435
charRefEndPos = ParseNamedCharRef( expandType !=
EntityExpandType
.OnlyGeneral, null );
5444
if ( expandType ==
EntityExpandType
.OnlyCharacter ||
7738
switch ( HandleEntityReference( true,
EntityExpandType
.OnlyCharacter, out pos ) ) {
System\Xml\Core\XmlTextReaderImplAsync.cs (7)
1505
var tuple_3 = await HandleEntityReferenceAsync(false,
EntityExpandType
.OnlyGeneral).ConfigureAwait(false);
2527
var tuple_8 = await HandleEntityReferenceAsync( true,
EntityExpandType
.All).ConfigureAwait(false);
3153
var tuple_14 = await HandleEntityReferenceAsync(false,
EntityExpandType
.All).ConfigureAwait(false);
3466
private async Task< Tuple<int, EntityType> > HandleEntityReferenceAsync(bool isInAttributeValue,
EntityExpandType
expandType) {
3481
var tuple_17 = await ParseNumericCharRefAsync( expandType !=
EntityExpandType
.OnlyGeneral, null).ConfigureAwait(false);
3494
charRefEndPos = await ParseNamedCharRefAsync( expandType !=
EntityExpandType
.OnlyGeneral, null ).ConfigureAwait(false);
3505
if ( expandType ==
EntityExpandType
.OnlyCharacter ||