System.Net.GlobalLog.Dump C# (CSharp) Method

Dump() private method

private Dump ( IntPtr buffer, int offset, int length ) : void
buffer IntPtr
offset int
length int
return void
        public static void Dump(IntPtr buffer, int offset, int length) {
        }

Same methods

GlobalLog::Dump ( byte buffer ) : void
GlobalLog::Dump ( byte buffer, int length ) : void
GlobalLog::Dump ( byte buffer, int offset, int length ) : void

Usage Example

Beispiel #1
0
        /// <devdoc>
        ///    <para> Reads data from the stream. </para>
        /// </devdoc>
        public override int Read(byte[] buffer, int offset, int size)
        {
            int result = m_NetworkStream.Read(buffer, offset, size);

            GlobalLog.Dump(buffer, offset, result);
            return(result);
        }
All Usage Examples Of System.Net.GlobalLog::Dump