4 references to Length
System.Private.Windows.Core (4)
Windows\Win32\PInvoke.GetWindowText.cs (2)
46
int actualTextLength = GetWindowText(hWnd.Handle, b, buffer.
Length
);
57
if (actualTextLength > buffer.
Length
- 2)
Windows\Win32\System\Com\ComManagedStream.cs (2)
85
uint read = remaining < (ulong)buffer.
Length
? (uint)remaining : (uint)buffer.
Length
;