Re: [IronPython] problem accessing/import System.IO.Packaging using IronPython

2007-11-28 Thread Sanghyeon Seo
2007/11/29, Raymond Yee <[EMAIL PROTECTED]>: > # I can't figure out how to load System.IO.Packaging -- which is part of > .NET 3.0 > # > http://msdn2.microsoft.com/en-us/library/system.io.packaging.package.aspx > is part of .NET 3.0 The MSDN page you linked says: Package Class Namespace: System.I

Re: [IronPython] problem accessing/import System.IO.Packaging using IronPython

2007-11-28 Thread Dino Viehland
System.IO.Packaging is in WindowsBase.dll so you need to add a reference to that DLL: import clr clr.AddReference('WindowsBase') from System.IO import Packaging print dir(Packaging) ['CertificateEmbeddingOption', 'CompressionOption', 'EncryptedPackageEnvelope', 'EncryptionOption', 'InvalidSignat