C# and Memory-mapped files

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm an old Win32 guy, so I may be completely off-base here, but is there any
support for Memory-mapped files in C#?

I'm actually trying to get around a limitation with Windows Authorization
Manager. Right now, the security information contained in AzMan is either
stored in Active Directory or an XML file. I'd like to be able to store it
in a database, and populate a memory-mapped file (or it's equivalent) from
the DB when the file is 'opened'.

Has anyone tried to do this? I could read it from the DB and write it to
the file system, of course, but I'm trying not to do that unless I have to.

Thanks,
Phil
 
Hello PMarino,

http://groups.google.com/groups/search?ie=UTF-8&oe=UTF-8&q=dotnet+memory+mapped+files+
there are several samples

P> I'm an old Win32 guy, so I may be completely off-base here, but is
P> there any support for Memory-mapped files in C#?
P>
P> I'm actually trying to get around a limitation with Windows
P> Authorization Manager. Right now, the security information contained
P> in AzMan is either stored in Active Directory or an XML file. I'd
P> like to be able to store it in a database, and populate a
P> memory-mapped file (or it's equivalent) from the DB when the file is
P> 'opened'.
P>
P> Has anyone tried to do this? I could read it from the DB and write
P> it to the file system, of course, but I'm trying not to do that
P> unless I have to.
P>
P> Thanks,
P> Phil
---
WBR,
Michael Nemtsev :: blog: http://spaces.live.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsch
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top