IDataObject Methods

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Include Protected Members
Include Inherited Members

Include Silverlight Members
Include Silverlight for Windows Phone Members
Include XNA Framework Members

Methods

  Name Description
Public methodSupported by Silverlight for Windows Phone GetData(String) Retrieves a data object in a specified format; the data format is specified by a string.
Public methodSupported by Silverlight for Windows Phone GetData(Type) Retrieves a data object in a specified format; the data format is specified by a Type object.
Public methodSupported by Silverlight for Windows Phone GetData(String, Boolean) Retrieves a data object in a specified format, and optionally, converts the data to the specified format.
Public methodSupported by Silverlight for Windows Phone GetDataPresent(String) Checks whether the data is available in, or can be converted to, a specified format; the data format is specified by a string.
Public methodSupported by Silverlight for Windows Phone GetDataPresent(Type) Checks to see whether the data is available in, or can be converted to, a specified format. The data format is specified by a Type object.
Public methodSupported by Silverlight for Windows Phone GetDataPresent(String, Boolean) Checks whether the data is available in, or can be converted to, a specified format. If the data is not already available in the specified format, a Boolean flag indicates whether to check if the data can be converted to the specified format.
Public methodSupported by Silverlight for Windows Phone GetFormats() Returns a list of all formats that the data in this data object is stored in, or can be converted to.
Public methodSupported by Silverlight for Windows Phone GetFormats(Boolean) Returns a list of all formats that the data in this data object is stored in. A Boolean flag indicates whether to also include formats that the data can be automatically converted to.
Public methodSupported by Silverlight for Windows Phone SetData(Object) Stores the specified data in this data object, and automatically converts the data format from the source object type.
Public methodSupported by Silverlight for Windows Phone SetData(String, Object) Stores the specified data in this data object, using one or more specified data formats. The data format is specified by a string.
Public methodSupported by Silverlight for Windows Phone SetData(Type, Object) Stores the specified data in this data object, using one or more specified data formats. The data format is specified by a Type class.
Public methodSupported by Silverlight for Windows Phone SetData(String, Object, Boolean) Stores the specified data in this data object, using one or more specified data formats. This overload includes a Boolean flag to indicate whether the data may be converted to another format on retrieval.

Top