Is it necessary to dispose of binary properties in server responses?

I am calling a method on a server and one of the properties being returned is a Binary type (a DataTable streamed to XML). Trying to track down a memory leak. Should I be calling the Binary object’s Dispose method after processing the response?

On .NET, that should not be necessary i’d expect, no. Dispose/Disposable is really only essential for non-memory resources (e.g. open file handles, network connections, etc). But my colleague will have a more authoritative answer, in the morning.