StrongNameFreeBuffer (mscorsn)
Last changed: 66.194.55.242

.
Summary
Free the buffer allocated by the Strong Name functions

C# Signature:

/// <summary>

/// Free the buffer allocated by strong name functions

/// </summary>

/// <param name="pbMemory">address of memory to free</param>

[DllImport("mscoree.dll")]

public extern static void StrongNameFreeBuffer(IntPtr pbMemory)

User-Defined Types:

None.

Notes:

This function is exported from mscorsn.dll in v1.0 and v1.1 of the .NET framework, but it will be moved to mscorwks.dll in v2.0. There is a shim in mscoree.dll which will redirect to the appropriate implementation dll, which has the same name.

This function should be used to free the memory from StrongNameKeyGen and StrongNameKeyGenEx.

Sample Code:

See the sample on Shawn Farkas' blog for a complete sample of using this API: http://blogs.msdn.com/shawnfa/archive/2004/07/09/178902.aspx