CreatedBy 属性

Gets the authentication credentials of the user who created the condition.

命名空间:  Microsoft.SqlServer.Management.Dmf
程序集:  Microsoft.SqlServer.Dmf(在 Microsoft.SqlServer.Dmf.dll 中)

语法

声明
<SfcPropertyAttribute(SfcPropertyFlags.Data)> _
Public ReadOnly Property CreatedBy As String
    Get
用法
Dim instance As Condition
Dim value As String

value = instance.CreatedBy
[SfcPropertyAttribute(SfcPropertyFlags.Data)]
public string CreatedBy { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Data)]
public:
property String^ CreatedBy {
    String^ get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.Data)>]
member CreatedBy : string
function get CreatedBy () : String

属性值

类型:System. . :: . .String
A String value that contains the authentication credentials of the user who created the condition.

示例

C#

System.Console.WriteLine(c.CreatedBy);

VB

System.Console.WriteLine(c.CreatedBy)