Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a 3rd party COM object that implements the IPersistStream COM Interface.

I need to write a serialize/deserialize method for these COM Objects.

public byte[] Serialize(MyComObject obj){ ... }
public MyComObject DeSerialize(byte[] bytes) { ... }

the methods i'm interested in are Load() and Save(), however, neither returns anything and my pointer skills are a bit rusty.

public interface IPersistStream
{
    void GetClassID(out Guid pClassID);
    void GetSizeMax(out long pcbSize);
    int IsDirty();
    void Load(IStream pStm);
    void Save(IStream pStm, bool fClearDirty);
}

Does anyone have any sample code for using the IStream interface within .net C# to achieve this?

Apologies if this isn't enough information.

share|improve this question
Your question doesn't make sense. If the COM object already implements IPersistStream then you only need to take care of IStream if you want to use its implementation. – Hans Passant Jul 14 '11 at 23:20
OK, could you elaborate on what that would look like? I'll change the OP. – priehl Jul 14 '11 at 23:32
That looks like a step in the right direction. I guess this has devolved into a question about how to use that wrapper. – priehl Jul 15 '11 at 14:18

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.