2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / class / WindowsBase / System.IO.Packaging / EncryptedPackageEnvelope.cs
blob70226b2e352e4651a188d77280b1d3c578d09c64
1 // Permission is hereby granted, free of charge, to any person obtaining
2 // a copy of this software and associated documentation files (the
3 // "Software"), to deal in the Software without restriction, including
4 // without limitation the rights to use, copy, modify, merge, publish,
5 // distribute, sublicense, and/or sell copies of the Software, and to
6 // permit persons to whom the Software is furnished to do so, subject to
7 // the following conditions:
8 //
9 // The above copyright notice and this permission notice shall be
10 // included in all copies or substantial portions of the Software.
11 //
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20 // Copyright (c) 2007 Novell, Inc. (http://www.novell.com)
22 // Authors:
23 // Chris Toshok (toshok@ximian.com)
26 using System;
27 using System.IO;
28 using System.Security.RightsManagement;
30 namespace System.IO.Packaging {
32 public class EncryptedPackageEnvelope : IDisposable
34 internal EncryptedPackageEnvelope ()
38 protected virtual void Dispose (bool disposing)
40 throw new NotImplementedException ();
43 public FileAccess FileOpenAccess {
44 get { throw new NotImplementedException (); }
47 public PackageProperties PackageProperties {
48 get { throw new NotImplementedException (); }
51 public RightsManagementInformation RightsManagementInformation {
52 get { throw new NotImplementedException (); }
55 public StorageInfo StorageInfo {
56 get { throw new NotImplementedException (); }
59 public void Close ()
61 throw new NotImplementedException ();
63 public void Dispose ()
65 throw new NotImplementedException ();
67 public void Flush ()
69 throw new NotImplementedException ();
72 public Package GetPackage ()
74 throw new NotImplementedException ();
77 public static bool IsEncryptedPackageEnvelope (Stream stream)
79 throw new NotImplementedException ();
81 public static bool IsEncryptedPackageEnvelope (string fileName)
83 throw new NotImplementedException ();
86 public static EncryptedPackageEnvelope Create (Stream envelopeStream, PublishLicense publishLicense, CryptoProvider cryptoProvider)
88 throw new NotImplementedException ();
90 public static EncryptedPackageEnvelope Create (string envelopeFileName, PublishLicense publishLicense, CryptoProvider cryptoProvider)
92 throw new NotImplementedException ();
94 public static EncryptedPackageEnvelope CreateFromPackage (Stream envelopeStream, Stream packageStream, PublishLicense publishLicense, CryptoProvider cryptoProvider)
96 throw new NotImplementedException ();
98 public static EncryptedPackageEnvelope CreateFromPackage (string envelopeFileName, Stream packageStream, PublishLicense publishLicense, CryptoProvider cryptoProvider)
100 throw new NotImplementedException ();
103 public static EncryptedPackageEnvelope Open (Stream envelopeStream)
105 throw new NotImplementedException ();
107 public static EncryptedPackageEnvelope Open (string envelopeFileName)
109 throw new NotImplementedException ();
111 public static EncryptedPackageEnvelope Open (string envelopeFileName, FileAccess access)
113 throw new NotImplementedException ();
115 public static EncryptedPackageEnvelope Open (string envelopeFileName, FileAccess access, FileShare sharing)
117 throw new NotImplementedException ();