UtilitiesToStringDetails Method (OptimizedPersistable, Schema, TypeVersion, Boolean) |
Currently only used by Database Manager
Namespace:
VelocityDBExtensions
Assembly:
VelocityDBExtensions (in VelocityDBExtensions.dll) Version: 11.1.0.0 (11.1.0)
Syntax public static string ToStringDetails(
this OptimizedPersistable pObj,
Schema schema,
TypeVersion typeVersion,
bool skipArrays
)
<ExtensionAttribute>
Public Shared Function ToStringDetails (
pObj As OptimizedPersistable,
schema As Schema,
typeVersion As TypeVersion,
skipArrays As Boolean
) As String
public:
[ExtensionAttribute]
static String^ ToStringDetails(
OptimizedPersistable^ pObj,
Schema^ schema,
TypeVersion^ typeVersion,
bool skipArrays
)
[<ExtensionAttribute>]
static member ToStringDetails :
pObj : OptimizedPersistable *
schema : Schema *
typeVersion : TypeVersion *
skipArrays : bool -> string
Parameters
- pObj
- Type: VelocityDbOptimizedPersistable
Object for which we want detailed to string data - schema
- Type: VelocityDb.TypeInfoSchema
The active schema - typeVersion
- Type: VelocityDb.TypeInfoTypeVersion
describes the type of the pObj - skipArrays
- Type: SystemBoolean
if true include array data in generated string
Return Value
Type:
Stringcontent of an object as string
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
OptimizedPersistable. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also