Get the server object configuration with the specified Name and TypeName.
[Visual Basic 6.0] Function GetConfiguration(
ByVal Name As String, _
ByVal TypeName As String _
) As IServerObjectConfiguration
[Visual Basic .NET] Public Function GetConfiguration ( _ ByVal Name As String, _ ByVal TypeName As String _ ) As IServerObjectConfiguration
[C#] public IServerObjectConfiguration GetConfiguration ( string Name, string TypeName );
[Java] public IServerObjectConfiguration getConfiguration ( String Name, String TypeName ) throws IOException, AutomationException
[C++] HRESULT GetConfiguration( BSTR Name, BSTR TypeName, IServerObjectConfiguration** config );
Parameters
Name [in]
Name is a parameter of type BSTR
TypeName [in]
TypeName is a parameter of type BSTR
config [out, retval]
config is a parameter of type IServerObjectConfiguration
The GetConfiguration method returns the IServerObjectConfiguration interface on the ServerObjectConfiguration specified by name and type. Once you have a reference to the ServerObjectConfiguration, you can get and set its properties, and use it as input the UpdateConfiguration method.