ConnectedServiceContext.SetExtendedDesignerData<TData>(TData) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets the designer data for the connected service that is stored in the ConnectedServices.json file for the service upon successfully adding/updating the service.
public:
generic <typename TData>
where TData : class abstract void SetExtendedDesignerData(TData data);
public:
generic <typename TData>
where TData : class abstract void SetExtendedDesignerData(TData data);
template <typename TData>
where TData : class abstract void SetExtendedDesignerData(TData data);
public abstract void SetExtendedDesignerData<TData> (TData data) where TData : class;
abstract member SetExtendedDesignerData : 'Data -> unit (requires 'Data : null)
Public MustOverride Sub SetExtendedDesignerData(Of TData As Class) (data As TData)
Type Parameters
- TData
The type of data being stored.
Parameters
- data
- TData
The extended designer data to store in the ConnectedServices.json file.
Remarks
The DataContractAttribute and DataMemberAttribute can be used to control how the object is serialized.