ExtensionMethods.FullName Method (IEdmSchemaElement)
Gets the full name with the specified element.
Namespace: Microsoft.Data.Edm
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function FullName ( _
element As IEdmSchemaElement _
) As String
'Usage
Dim element As IEdmSchemaElement
Dim returnValue As String
returnValue = element.FullName()
public static string FullName(
this IEdmSchemaElement element
)
[ExtensionAttribute]
public:
static String^ FullName(
IEdmSchemaElement^ element
)
static member FullName :
element:IEdmSchemaElement -> string
public static function FullName(
element : IEdmSchemaElement
) : String
Parameters
- element
Type: Microsoft.Data.Edm.IEdmSchemaElement
The schema element.
Return Value
Type: System.String
The full name.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEdmSchemaElement. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.103) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.103).