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