Gets the drag data. The drag dat prefix. The name. The data.
(string dragPrefix, string name)
| 56 | /// <param name="name">The name.</param> |
| 57 | /// <returns>The data.</returns> |
| 58 | public static DragData GetDragData(string dragPrefix, string name) |
| 59 | { |
| 60 | if (name == null) |
| 61 | throw new ArgumentNullException(); |
| 62 | |
| 63 | return new DragDataText(dragPrefix + name); |
| 64 | } |
| 65 | |
| 66 | /// <summary> |
| 67 | /// Gets the drag data. |
no outgoing calls
no test coverage detected