27 references to UriSchemePack
PresentationCore (12)
Core\CSharp\MS\Internal\FontCache\FontCacheUtil.cs (1)
724
else if (fontLocation.Scheme == PackUriHelper.
UriSchemePack
)
Core\CSharp\MS\Internal\FontCache\FontResourceCache.cs (1)
64
Debug.Assert(uri.IsAbsoluteUri && uri.Scheme == PackUriHelper.
UriSchemePack
&& BaseUriHelper.IsPackApplicationUri(uri));
Core\CSharp\MS\Internal\WpfWebRequestHelper.cs (1)
70
if (string.Compare(uri.Scheme, PackUriHelper.
UriSchemePack
, StringComparison.Ordinal) == 0)
Core\CSharp\System\IO\Packaging\PackWebRequestFactory.cs (3)
83
if (String.Compare(uri.Scheme, PackUriHelper.
UriSchemePack
, StringComparison.Ordinal) != 0)
84
throw new ArgumentException(SR.Get(SRID.UriSchemeMismatch, PackUriHelper.
UriSchemePack
), "uri");
164
if (String.Compare(uri.Scheme, PackUriHelper.
UriSchemePack
, StringComparison.Ordinal) == 0)
Core\CSharp\System\Windows\Media\Imaging\BitmapDecoder.cs (1)
1185
if (String.Compare(uri.Scheme, PackUriHelper.
UriSchemePack
, StringComparison.OrdinalIgnoreCase) == 0)
Core\CSharp\System\Windows\Media\MediaClock.cs (1)
214
&& baseUri.Scheme != System.IO.Packaging.PackUriHelper.
UriSchemePack
Core\CSharp\System\Windows\Media\MediaPlayerState.cs (1)
955
if (source != null && source.IsAbsoluteUri && source.Scheme == PackUriHelper.
UriSchemePack
)
Core\CSharp\System\Windows\Navigation\BaseUriHelper.cs (2)
178
SecurityHelper.AreStringTypesEqual(uri.Scheme, PackUriHelper.
UriSchemePack
) &&
201
Debug.Assert(uri != null && uri.IsAbsoluteUri && SecurityHelper.AreStringTypesEqual(uri.Scheme, PackUriHelper.
UriSchemePack
) && IsPackApplicationUri(uri));
Shared\MS\Internal\SecurityHelper.cs (1)
1276
PackUriHelper.
UriSchemePack
, true /* ignore case */,
PresentationFramework (6)
src\Framework\System\Windows\Controls\AVElementHelper.cs (1)
139
if (value.Scheme != System.IO.Packaging.PackUriHelper.
UriSchemePack
)
src\Framework\System\Windows\Documents\FixedDocument.cs (2)
906
if (baseUri.Scheme.Equals(PackUriHelper.
UriSchemePack
, StringComparison.OrdinalIgnoreCase))
934
if (baseUri.Scheme.Equals(PackUriHelper.
UriSchemePack
, StringComparison.OrdinalIgnoreCase))
src\Framework\System\Windows\Documents\FixedPage.cs (2)
624
(uri.Scheme == PackUriHelper.
UriSchemePack
&& !String.IsNullOrEmpty(uri.Fragment)))
641
(inputUri.Scheme == PackUriHelper.
UriSchemePack
&& !String.IsNullOrEmpty(inputUri.Fragment))))
src\Framework\System\Windows\Navigation\JournalEntry.cs (1)
371
bool isPack = String.Compare(uri.Scheme, PackUriHelper.
UriSchemePack
, StringComparison.OrdinalIgnoreCase) == 0;
WindowsBase (9)
Base\MS\Internal\IO\Packaging\InternalRelationshipCollection.cs (2)
476
|| (targetUri.IsAbsoluteUri && targetUri.Scheme == PackUriHelper.
UriSchemePack
))
640
if (String.CompareOrdinal(target.Scheme, PackUriHelper.
UriSchemePack
) == 0)
Base\System\IO\Packaging\PackUriHelper.cs (7)
139
absolutePackageUri = String.Concat(PackUriHelper.
UriSchemePack
, Uri.SchemeDelimiter, absolutePackageUri);
358
if (firstPackageUri.Scheme == PackUriHelper.
UriSchemePack
&& secondPackageUri.Scheme == PackUriHelper.
UriSchemePack
)
579
string.Compare(uri.Scheme,
UriSchemePack
, StringComparison.OrdinalIgnoreCase) == 0;
688
if (!UriParser.IsKnownScheme(
UriSchemePack
))
696
UriParser.Register(new GenericUriParser(GenericUriParserOptions.GenericAuthority),
UriSchemePack
, -1);
740
if (packUri.Scheme != PackUriHelper.
UriSchemePack
)