8 references to OrThrowIfNull
System.Private.Windows.Core (8)
System\Private\Windows\Ole\Composition.cs (1)
108
ManagedDataObject.TryGetData(typeof(T).FullName.
OrThrowIfNull
(), out data);
System\Private\Windows\Ole\Composition.NativeToManagedAdapter.cs (3)
513
public object? GetData(Type format) => GetData(format.FullName.
OrThrowIfNull
());
514
public bool GetDataPresent(Type format) => GetDataPresent(format.FullName.
OrThrowIfNull
());
623
typeof(T).FullName.
OrThrowIfNull
(),
System\Private\Windows\Ole\DataObjectCore.cs (2)
23
if (string.IsNullOrWhiteSpace(format.
OrThrowIfNull
()))
28
data.
OrThrowIfNull
(nameof(data));
System\Private\Windows\Ole\DataStore.cs (1)
99
SetData(format.FullName.
OrThrowIfNull
(), data);
System\TypeExtensions.cs (1)
278
return type.FullName.
OrThrowIfNull
();