Retrieves a single setting override specified by path. Namespace: Microsoft.ComponentStudio.ComponentPlatformInterface
Assembly: Microsoft.ComponentStudio.ComponentPlatformInterface (in microsoft.componentstudio.componentplatforminterface.dll)

Usage

Visual Basic
Dim relativePath As String
Dim returnValue As SettingOverride
Dim componentSettingOverrideCollection1 As ComponentSettingOverrideCollection
returnValue = componentSettingOverrideCollection1.FindAny(relativePath)

Syntax

Visual Basic
Public Function FindAny( _
		ByVal relativePath As String _
) As SettingOverride
C#
public SettingOverride FindAny(
		string relativePath
);
C++
public:
SettingOverride^ FindAny(
		String^ relativePath
);
J#
public SettingOverride FindAny(
		System.String relativePath
);
JScript
public function FindAny(
		 relativePath : String
) : SettingOverride;

Parameters

relativePath

Path relative to this object

Return Value

A single setting override specified by relativePath. If multiple overrides match the path, the first one is returned.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, Windows Vista, and Windows 2000

Target Platforms

See Also