7 references to OrThrowIfNull
System.Private.Windows.Core (7)
System\Private\Windows\Ole\Composition.cs (2)
127format ??= typeof(T).FullName.OrThrowIfNull(); 177ManagedDataObject.TryGetData(typeof(T).FullName.OrThrowIfNull(), out data);
System\Private\Windows\Ole\Composition.NativeToManagedAdapter.cs (3)
516public object? GetData(Type format) => GetData(format.FullName.OrThrowIfNull()); 517public bool GetDataPresent(Type format) => GetDataPresent(format.FullName.OrThrowIfNull()); 629typeof(T).FullName.OrThrowIfNull(),
System\Private\Windows\Ole\DataObjectExtensions.cs (1)
12if (filePaths.OrThrowIfNull().Count == 0)
System\Private\Windows\Ole\DataStore.cs (1)
94SetData(format.FullName.OrThrowIfNull(), data);