TimeZoneEnumeration Constructor ()
Creates an uninitialized instance of the TimeZoneEnumeration class.
Пространство имен: Microsoft.SqlServer.NotificationServices
Сборка: Microsoft.SqlServer.NotificationServices (in microsoft.sqlserver.notificationservices.dll)
Синтаксис
'Декларация
Public Sub New
public TimeZoneEnumeration ()
public:
TimeZoneEnumeration ()
public TimeZoneEnumeration ()
public function TimeZoneEnumeration ()
Замечания
The parameterless constructor is used in conjunction with the Initialize method to enable COM interoperability. After construction, the resulting object must be initialized with a reference to an NSInstance and a string containing the desired language for the time zone data before it can be used.
Пример
The following example shows how to create and initialize a TimeZoneEnumeration in unmanaged Microsoft Visual Basic Scripting Edition (VBScript) code:
Dim testInstance, testTimeZoneEnumeration, timeZones
const instanceName = "Tutorial"
' Create the NSInstance object.
set testInstance = WScript.CreateObject( _
"Microsoft.SqlServer.NotificationServices.NSInstance")
testInstance.Initialize instanceName
' Create the TimeZoneEnumeration object.
set testTimeZoneEnumeration = WScript.CreateObject( _
"Microsoft.SqlServer.NotificationServices.timeZoneEnumeration")
testTimeZoneEnumeration.Initialize (testInstance), "en"
' Print the valid time zone IDs between 2 and 40
for each thisTimeZone in testTimeZoneEnumeration
if thisTimeZone.TimeZoneId >=2 _
and thisTimeZone.TimeZoneId <=40 then
timeZones = timeZones & thisTimeZone.TimeZoneId & ", "
end if
next
WScript.echo timeZones
Платформы
Платформы разработки
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
Целевые платформы
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
См. также
Справочник
TimeZoneEnumeration Class
TimeZoneEnumeration Members
Microsoft.SqlServer.NotificationServices Namespace