Condition.DateModified 속성
Gets the date and time when the condition was last modified.
네임스페이스: Microsoft.SqlServer.Management.Dmf
어셈블리: Microsoft.SqlServer.Dmf(Microsoft.SqlServer.Dmf.dll)
구문
‘선언
<SfcPropertyAttribute(SfcPropertyFlags.Data)> _
Public ReadOnly Property DateModified As DateTime
Get
‘사용 방법
Dim instance As Condition
Dim value As DateTime
value = instance.DateModified
[SfcPropertyAttribute(SfcPropertyFlags.Data)]
public DateTime DateModified { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Data)]
public:
property DateTime DateModified {
DateTime get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.Data)>]
member DateModified : DateTime
function get DateModified () : DateTime
속성 값
유형: System.DateTime
A DateTime value that contains the date and time when the condition was last modified.
예
C#
System.Console.WriteLine(c.DateModified);
VB
System.Console.WriteLine(c.DateModified)