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