Compartir a través de


DateCreated Propiedad

Gets the time and date when the ManagedInstance object was created.

Espacio de nombres:  Microsoft.SqlServer.Management.Utility
Ensamblado:  Microsoft.SqlServer.Management.Utility (en Microsoft.SqlServer.Management.Utility.dll)

Sintaxis

'Declaración
<DmfIgnorePropertyAttribute> _
<SfcPropertyAttribute(SfcPropertyFlags.Data)> _
Public ReadOnly Property DateCreated As DateTimeOffset
    Get
'Uso
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

Valor de la propiedad

Tipo: System. . :: . .DateTimeOffset
A DateTime system value that specifies the date and time when the ManagedInstance object was created.

Ejemplos

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