8 references to Length
mscorlib (8)
system\security\securestring.cs (8)
317
return m_buffer.
Length
;
346
if( capacity <= m_buffer.
Length
) {
450
Contract.Assert(!m_buffer.IsInvalid && m_buffer.
Length
!= 0, "Invalid buffer!");
451
Contract.Assert(m_buffer.
Length
% BlockSize == 0, "buffer length must be multiple of blocksize!");
462
int status = Win32Native.SystemFunction040(m_buffer, (uint)m_buffer.
Length
* 2, ProtectionScope);
651
Contract.Assert(!m_buffer.IsInvalid && m_buffer.
Length
!= 0, "Invalid buffer!");
652
Contract.Assert(m_buffer.
Length
% BlockSize == 0, "buffer length must be multiple of blocksize!");
664
int status = Win32Native.SystemFunction041(m_buffer, (uint)m_buffer.
Length
* 2, ProtectionScope);