1 write to dwLowDateTime
PresentationCore (1)
Core\CSharp\System\Windows\Media\Imaging\BitmapMetadata.cs (1)
1496propVar.filetime.dwLowDateTime = (Int32)longFileTime;
10 references to dwLowDateTime
PresentationCore (1)
Core\CSharp\System\Windows\Media\Imaging\BitmapMetadata.cs (1)
1484DateTime dateTime = DateTime.FromFileTime( (((long)time.dwHighDateTime) << 32) + (uint)time.dwLowDateTime );
System (2)
security\system\security\cryptography\x509\x509certificate2.cs (2)
716long dt = (((long)(uint)pCertInfo.NotAfter.dwHighDateTime) << 32) | ((long)(uint)pCertInfo.NotAfter.dwLowDateTime); 737long dt = (((long)(uint)pCertInfo.NotBefore.dwHighDateTime) << 32) | ((long)(uint)pCertInfo.NotBefore.dwLowDateTime);
System.Core (1)
System\Security\Cryptography\X509Certificates\TimestampInformation.cs (1)
31(ulong)((uint)timestamper.ftTimestamp.dwLowDateTime);
System.Security (1)
system\security\cryptography\pkcs\recipientinfo.cs (1)
277long date = (((long)(uint) m_encryptedKeyInfo.Date.dwHighDateTime) << 32) | ((long)(uint) m_encryptedKeyInfo.Date.dwLowDateTime);
System.ServiceModel (1)
System\ServiceModel\Channels\SafeNativeMethods.cs (1)
35time |= (uint)fileTime.dwLowDateTime;
System.ServiceModel.Internals (1)
System\Runtime\Interop\UnsafeNativeMethods.cs (1)
86time |= (uint)fileTime.dwLowDateTime;
System.Windows.Forms (1)
parent\parent\parent\public\Internal\NDP\Inc\mansign.cs (1)
1424long dt = (((long)(uint)timestamperInfo.ftTimestamp.dwHighDateTime) << 32) | ((long)(uint)timestamperInfo.ftTimestamp.dwLowDateTime);
WindowsBase (2)
Base\System\IO\Packaging\CompoundFile\StorageInfo.cs (2)
11930 == time.dwLowDateTime ) 1209(uint)time.dwLowDateTime ); // This second uint is very important!!