IVsDataSource.GetProperty 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.
Overloads
GetProperty(String) |
Gets a property of the DDEX data source. |
GetProperty(Guid, String) |
Gets a property of the DDEX data source as registered by a specific supporting DDEX provider. |
GetProperty(String)
Gets a property of the DDEX data source.
public:
System::Object ^ GetProperty(System::String ^ name);
public object GetProperty (string name);
abstract member GetProperty : string -> obj
Public Function GetProperty (name As String) As Object
Parameters
- name
- String
The name of the property to retrieve.
Returns
The value of the property, if it exists; otherwise, null.
Exceptions
The name
parameter is null.
Applies to
GetProperty(Guid, String)
Gets a property of the DDEX data source as registered by a specific supporting DDEX provider.
public:
System::Object ^ GetProperty(Guid provider, System::String ^ name);
public object GetProperty (Guid provider, string name);
abstract member GetProperty : Guid * string -> obj
Public Function GetProperty (provider As Guid, name As String) As Object
Parameters
- provider
- Guid
The identifier of a supporting DDEX provider.
- name
- String
The name of the property to retrieve.
Returns
The value of the property, if exists; otherwise, null.
Exceptions
The name
parameter was null.