Click or drag to resize

DataBindSettingsExtensionsGetDataProviderName Method

Returns the name of the data provider for the property with the specified name.

Namespace:  Slash.Unity.DataBind.Core.Utils
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
public static string GetDataProviderName(
	this IDataBindSettings settings,
	string name
)

Parameters

settings
Type: Slash.Unity.DataBind.Core.UtilsIDataBindSettings
Data Bind settings.
name
Type: SystemString
Name of property to get data provider name for.

Return Value

Type: String
Name of the data provider for the property with the specified name.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IDataBindSettings. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionThrown if an invalid data provider format is set in the settings.
See Also