HostedEventProviderArgumentCollection.Add Method

Adds an HostedEventProviderArgument to the HostedEventProviderArgumentCollection.

Пространство имен: Microsoft.SqlServer.Management.Nmo
Сборка: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Синтаксис

'Декларация
Public Sub Add ( _
    hostedEventProviderArgument As HostedEventProviderArgument _
)
public void Add (
    HostedEventProviderArgument hostedEventProviderArgument
)
public:
void Add (
    HostedEventProviderArgument^ hostedEventProviderArgument
)
public void Add (
    HostedEventProviderArgument hostedEventProviderArgument
)
public function Add (
    hostedEventProviderArgument : HostedEventProviderArgument
)

Параметры

Замечания

If you add arguments after deploying the application, you must Update the instance to apply the changes.

Пример

The following examples show how to define an event provider argument and add it to the collection of arguments for a hosted event provider:

HostedEventProviderArgument fileArg_Directory = 
    new HostedEventProviderArgument(
    flightEventProvider, "WatchDirectory");
fileArg_Directory.Value = sampleDirectory + @"\Events";
flightEventProvider.HostedEventProviderArguments.Add(
    fileArg_Directory);
Dim fileArg_Directory As HostedEventProviderArgument = _
    New HostedEventProviderArgument(flightEventProvider, _
        "WatchDirectory")
fileArg_Directory.Value = sampleDirectory + "\Events"
flightEventProvider.HostedEventProviderArguments.Add( _
    fileArg_Directory)

Синхронизация потоков

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

Платформы

Платформы разработки

Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.

Целевые платформы

Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.

См. также

Справочник

HostedEventProviderArgumentCollection Class
HostedEventProviderArgumentCollection Members
Microsoft.SqlServer.Management.Nmo Namespace

Другие ресурсы

Определение поставщиков событий
Argument Element for HostedProvider/Arguments (ADF)