3 implementations of GetData
PresentationCore (3)
System\Windows\dataobject.cs (3)
195public object GetData(string format) 2433public Object GetData(string format) 3350public Object GetData(string format)
6 references to GetData
PresentationCore.Tests (1)
BinaryFormat\DataObjectTests.cs (1)
33Assert.Throws<System.Runtime.InteropServices.COMException>(() => ClipboardDataObject.GetData(DataFormats.Serializable));
PresentationFramework (3)
MS\Internal\Controls\StickyNote\StickyNoteContentControl.cs (1)
303String rtfString = e.DataObject.GetData(DataFormats.Rtf) as String;
MS\Internal\Ink\ISFClipboardData.cs (1)
87MemoryStream stream = dataObject.GetData(StrokeCollection.InkSerializedFormat) as MemoryStream;
MS\Internal\Ink\XamlClipboardData.cs (1)
99string xml = dataObject.GetData(DataFormats.Xaml) as string;
PresentationUI (2)
MS\Internal\Documents\Application\PageTextBox.cs (1)
264string incomingString = e.DataObject.GetData(e.FormatToApply) as string;
MS\Internal\Documents\Application\ZoomComboBox.cs (1)
391string incomingString = e.DataObject.GetData(e.FormatToApply) as string;