ManagedInstance.DateCreated 属性
Gets the time and date when the ManagedInstance object was created.
命名空间: Microsoft.SqlServer.Management.Utility
程序集: Microsoft.SqlServer.Management.Utility(在 Microsoft.SqlServer.Management.Utility.dll 中)
语法
声明
<DmfIgnorePropertyAttribute> _
<SfcPropertyAttribute(SfcPropertyFlags.Data)> _
Public ReadOnly Property DateCreated As DateTimeOffset
Get
用法
Dim instance As ManagedInstance
Dim value As DateTimeOffset
value = instance.DateCreated
[DmfIgnorePropertyAttribute]
[SfcPropertyAttribute(SfcPropertyFlags.Data)]
public DateTimeOffset DateCreated { get; }
[DmfIgnorePropertyAttribute]
[SfcPropertyAttribute(SfcPropertyFlags::Data)]
public:
property DateTimeOffset DateCreated {
DateTimeOffset get ();
}
[<DmfIgnorePropertyAttribute>]
[<SfcPropertyAttribute(SfcPropertyFlags.Data)>]
member DateCreated : DateTimeOffset
function get DateCreated () : DateTimeOffset
属性值
类型:System.DateTimeOffset
A DateTime system value that specifies the date and time when the ManagedInstance object was created.
示例
VC#
ManagedInstance managedInstance;
managedInstance = new ManagedInstance();
System.Console.WriteLine(managedInstance.DateCreated);
VB
Dim managedInstance As ManagedInstance
managedInstance = New ManagedInstance ()
System.Console.WriteLine(managedInstance.DateCreated)
PowerShell
$managedInstance = New-Object Microsoft.SqlServer.Management.Utility.ManagedInstance
Write-Host $managedInstance.DateCreated