Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Returns the type of object that the NamedObject refers to.

{signature}
{example}{code:csharp|title=C#}
NamedObject.ReturnType type = namedObj.NameType;
{code}
{code:vb.net
|title=vb.net
}
Dim type As NamedObject.ReturnType = namedObj.NameType{code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns the type of object that the [NamedObject|NamedObject] refers to.{excerpt}
{signature:C#}
 public ReturnType NamedObjectType{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property NamedObjectType() As ReturnType
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle