4 references to GetTypedDataIfAvailable
PresentationCore (4)
System\Windows\clipboard.cs (4)
72
public static Stream? GetAudioStream() =>
GetTypedDataIfAvailable
<Stream>(DataFormatNames.WaveAudio);
106
if (
GetTypedDataIfAvailable
<string[]?>(DataFormatNames.FileDrop) is string[] strings)
117
public static BitmapSource? GetImage() =>
GetTypedDataIfAvailable
<BitmapSource>(DataFormats.Bitmap);
134
return
GetTypedDataIfAvailable
<string>(DataFormats.ConvertToDataFormats(format)) is string text