Add SignedCms to the TypeForwards in the System.Security.Cryptography.Pkcs facade...
[mono-project.git] / mcs / class / System.Security / System.Security.Cryptography.Pkcs / Pkcs12SafeContentsBag.NotSupported.cs
blob15f10f14d633709abad37aeb796559a0ee4fe628
1 using System;
2 using System.Security.Cryptography.Pkcs;
4 namespace System.Security.Cryptography.Pkcs {
5 /// <summary>Represents the SafeContentsBag from PKCS#12, a container whose contents are a PKCS#12 SafeContents value. This class cannot be inherited.</summary>
6 public sealed class Pkcs12SafeContentsBag : Pkcs12SafeBag {
7 /// <summary>Gets the SafeContents value contained within this bag.</summary>
8 /// <returns>The SafeContents value contained within this bag.</returns>
9 public Pkcs12SafeContents SafeContents {
10 get {
11 throw new PlatformNotSupportedException ();
15 internal Pkcs12SafeContentsBag ()
16 : base (null, default(ReadOnlyMemory<byte>)) {
17 throw new PlatformNotSupportedException ();