57 instantiations of PlatformNotSupportedException
mscorlib (17)
system\environment.cs (2)
910
throw new
PlatformNotSupportedException
();
1526
throw new
PlatformNotSupportedException
();
system\runtime\interopservices\windowsruntime\windowsruntimemarshal.cs (3)
1302
throw new
PlatformNotSupportedException
(Environment.GetResourceString("PlatformNotSupported_WinRT"));
1321
throw new
PlatformNotSupportedException
(Environment.GetResourceString("PlatformNotSupported_WinRT"));
1331
throw new
PlatformNotSupportedException
(Environment.GetResourceString("PlatformNotSupported_WinRT"));
system\security\principal\sid.cs (1)
484
throw new
PlatformNotSupportedException
( Environment.GetResourceString( "PlatformNotSupported_RequiresW2kSP3" ));
system\security\principal\win32.cs (4)
261
throw new
PlatformNotSupportedException
( Environment.GetResourceString( "PlatformNotSupported_RequiresW2kSP3" ));
295
throw new
PlatformNotSupportedException
( Environment.GetResourceString( "PlatformNotSupported_RequiresW2kSP3" ));
374
throw new
PlatformNotSupportedException
( Environment.GetResourceString( "PlatformNotSupported_RequiresW2kSP3" ));
415
throw new
PlatformNotSupportedException
( Environment.GetResourceString( "PlatformNotSupported_RequiresW2kSP3" ));
system\stubhelpers.cs (7)
550
throw new
PlatformNotSupportedException
(Environment.GetResourceString("PlatformNotSupported_WinRT"));
571
throw new
PlatformNotSupportedException
(Environment.GetResourceString("PlatformNotSupported_WinRT"));
591
throw new
PlatformNotSupportedException
(Environment.GetResourceString("PlatformNotSupported_WinRT"));
1411
throw new
PlatformNotSupportedException
(Environment.GetResourceString("PlatformNotSupported_WinRT"));
1455
throw new
PlatformNotSupportedException
(Environment.GetResourceString("PlatformNotSupported_WinRT"));
1500
throw new
PlatformNotSupportedException
(Environment.GetResourceString("PlatformNotSupported_WinRT"));
1516
throw new
PlatformNotSupportedException
(Environment.GetResourceString("PlatformNotSupported_WinRT"));
PresentationFramework (5)
src\Framework\MS\Internal\WindowsRuntime\Windows\Data\Text\AlternateWordForm.cs (1)
44
if (s_WinRTType == null) throw new
PlatformNotSupportedException
();
src\Framework\MS\Internal\WindowsRuntime\Windows\Data\Text\TextSegment.cs (1)
33
if (s_WinRTType == null) throw new
PlatformNotSupportedException
();
src\Framework\MS\Internal\WindowsRuntime\Windows\Data\Text\WordSegment.cs (1)
43
if (s_WinRTType == null) throw new
PlatformNotSupportedException
();
src\Framework\MS\Internal\WindowsRuntime\Windows\Data\Text\WordsSegmenter.cs (1)
70
throw new
PlatformNotSupportedException
();
src\Framework\System\Windows\Documents\WinRTSpellerInterop.cs (1)
75
throw new
PlatformNotSupportedException
(string.Empty, ex);
System (2)
net\System\Net\HttpListener.cs (1)
368
throw new
PlatformNotSupportedException
();
net\System\Net\UnsafeNativeMethods.cs (1)
1695
throw new
PlatformNotSupportedException
();
System.Core (16)
System\Diagnostics\Eventing\Reader\NativeWrapper.cs (16)
69
throw new System.
PlatformNotSupportedException
();
102
throw new System.
PlatformNotSupportedException
();
166
throw new System.
PlatformNotSupportedException
();
218
throw new System.
PlatformNotSupportedException
();
230
throw new System.
PlatformNotSupportedException
();
242
throw new System.
PlatformNotSupportedException
();
264
throw new System.
PlatformNotSupportedException
();
282
throw new System.
PlatformNotSupportedException
();
301
throw new System.
PlatformNotSupportedException
();
320
throw new System.
PlatformNotSupportedException
();
337
throw new System.
PlatformNotSupportedException
();
353
throw new System.
PlatformNotSupportedException
();
376
throw new System.
PlatformNotSupportedException
();
388
throw new System.
PlatformNotSupportedException
();
528
throw new System.
PlatformNotSupportedException
();
1102
throw new System.
PlatformNotSupportedException
();
System.Net (3)
net\HttpPolicyDownloaderProtocol.cs (1)
44
public SocketPolicy Result { get { throw new
PlatformNotSupportedException
(); } }
net\INetworkProgress.cs (2)
42
public int ProcessedBytes { get { throw new
PlatformNotSupportedException
(); } }
47
public int TotalBytes { get { throw new
PlatformNotSupportedException
(); } }
System.Web (9)
Hosting\IIS7WorkerRequest.cs (2)
1139
throw new
PlatformNotSupportedException
();
2575
throw new
PlatformNotSupportedException
();
Hosting\ISAPIWorkerRequest.cs (1)
2023
throw new
PlatformNotSupportedException
();
HttpHeaderCollection.cs (3)
73
throw new
PlatformNotSupportedException
();
93
throw new
PlatformNotSupportedException
();
177
throw new
PlatformNotSupportedException
();
HttpRequest.cs (1)
3159
throw new
PlatformNotSupportedException
();
HttpServerVarsCollection.cs (2)
218
throw new
PlatformNotSupportedException
();
305
throw new
PlatformNotSupportedException
();
System.Web.ApplicationServices (5)
Security\DefaultMembershipAdapter.cs (5)
15
get { throw new
PlatformNotSupportedException
(ApplicationServicesStrings.Platform_not_supported); }
19
get { throw new
PlatformNotSupportedException
(ApplicationServicesStrings.Platform_not_supported); }
23
get { throw new
PlatformNotSupportedException
(ApplicationServicesStrings.Platform_not_supported); }
27
get { throw new
PlatformNotSupportedException
(ApplicationServicesStrings.Platform_not_supported); }
31
throw new
PlatformNotSupportedException
(ApplicationServicesStrings.Platform_not_supported);
20 references to PlatformNotSupportedException
mscorlib (1)
system\security\cryptography\hmac.cs (1)
196
catch (
PlatformNotSupportedException
e) {
PresentationFramework (6)
src\Framework\MS\Internal\WindowsRuntime\Windows\Data\Text\WordsSegmenter.cs (2)
65
/// <exception cref="
PlatformNotSupportedException
"></exception>
94
/// <exception cref="
PlatformNotSupportedException
">The OS platform is not supported</exception>
src\Framework\System\Windows\Documents\SpellerInteropBase.cs (1)
110
catch (
PlatformNotSupportedException
)
src\Framework\System\Windows\Documents\WinRTSpellerInterop.cs (3)
42
/// <exception cref="
PlatformNotSupportedException
">
92
catch (Exception ex) when (ex is ArgumentException || ex is NotSupportedException || ex is
PlatformNotSupportedException
)
97
if ((ex is
PlatformNotSupportedException
) || (ex is NotSupportedException))
System (1)
services\monitoring\system\diagnosticts\Process.cs (1)
2409
catch(
PlatformNotSupportedException
) {
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\DesignerPerfEventProvider.cs (1)
22
catch (
PlatformNotSupportedException
)
System.Core (3)
System\Security\Cryptography\ECDiffieHellmanCng.cs (2)
625
/// <exception cref="
PlatformNotSupportedException
">
638
/// <exception cref="
PlatformNotSupportedException
">
System\Security\Cryptography\ECDiffieHellmanCngPublicKey.cs (1)
143
/// <exception cref="
PlatformNotSupportedException
">
System.Data (3)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\DesignerPerfEventProvider.cs (1)
22
catch (
PlatformNotSupportedException
)
fx\src\data\System\Data\Common\AdapterUtil.cs (2)
245
static internal
PlatformNotSupportedException
PropertyNotSupported(string property) {
246
PlatformNotSupportedException
e = new PlatformNotSupportedException(Res.GetString(Res.ADP_PropertyNotSupported, property));
System.Data.Entity (1)
System\Data\Common\Utils\MetadataHelper.cs (1)
864
catch (
PlatformNotSupportedException
)
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\HostedHttpRequestAsyncResult.cs (1)
294
catch (
PlatformNotSupportedException
)
System.Web (2)
HttpResponse.cs (1)
3015
catch (
PlatformNotSupportedException
e) {
Security\ADMembershipProvider.cs (1)
4027
catch (
PlatformNotSupportedException
)
XamlBuildTask (1)
Microsoft\VisualStudio\Activities\VSDesignerPerfEventProvider.cs (1)
22
catch (
PlatformNotSupportedException
)