Event.SetFieldValue Method
Sets the value of a field in the event record.
네임스페이스: Microsoft.SqlServer.NotificationServices
어셈블리: Microsoft.SqlServer.NotificationServices (in microsoft.sqlserver.notificationservices.dll)
구문
‘선언
Public Sub SetFieldValue ( _
fieldName As String, _
newValue As Object _
)
public void SetFieldValue (
string fieldName,
Object newValue
)
public:
virtual void SetFieldValue (
String^ fieldName,
Object^ newValue
) sealed
public final void SetFieldValue (
String fieldName,
Object newValue
)
public final function SetFieldValue (
fieldName : String,
newValue : Object
)
매개 변수
- fieldName
The name of the event field.
- newValue
The value for the event field.
주의
This method is provided for COM interoperability, to allow callers from unmanaged code to set field values for an event record. If not using COM interop, use the Item property to get and set values.
예
The following example shows how to use the SetFieldValue method in unmanaged Microsoft Visual Basic Scripting Edition (VBScript) code to set the value of an event field:
Dim myInstance, myApplication, myEvent
const instanceName = "MyInstanceName"
const applicationName = "MyApplicationName"
const eventClassName = "MyEventClassName"
const eventFieldName = "MyEventFieldName"
'Create & initialize an NSInstance object.
set myInstance = WScript.CreateObject("Microsoft.SqlServer.NotificationServices.NSInstance")
myInstance.Initialize instanceName
'Create & initialize an NSApplication object.
set myApplication = WScript.CreateObject("Microsoft.SqlServer.NotificationServices.NSApplication")
myApplication.Initialize (myInstance), applicationName
'Create & initialize an Event object.
set myEvent = WScript.CreateObject("Microsoft.SqlServer.NotificationServices.Event")
myEvent.Initialize (myApplication), eventClassName
'Use the SetFieldValue method to set a field value.
myEvent.SetFieldValue eventFieldName, "Test"
스레드 보안
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.
플랫폼
개발 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
대상 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
참고 항목
참조
Event Class
Event Members
Microsoft.SqlServer.NotificationServices Namespace