ReverseEngineerFilterElement.ElementNameParts Property
Gets or sets a list of the parts of the element name.
Namespace: Microsoft.Data.Schema.SchemaModel
Assembly: Microsoft.Data.Schema (in Microsoft.Data.Schema.dll)
Syntax
'Declaration
Public Property ElementNameParts As IList(Of String)
public IList<string> ElementNameParts { get; private set; }
public:
property IList<String^>^ ElementNameParts {
IList<String^>^ get ();
private: void set (IList<String^>^ value);
}
member ElementNameParts : IList<string> with get, private set
function get ElementNameParts () : IList<String>
private function set ElementNameParts (value : IList<String>)
Property Value
Type: System.Collections.Generic.IList<String>
The list of parts in the name of the element.
Remarks
An element named "dbo.MyTable" would be represented by a list with two name parts: "dbo" and "MyTable".
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
ReverseEngineerFilterElement Class