UtilitiesToStringDetails Method (OptimizedPersistable, SessionBase, Boolean) |
Object details as a string
Namespace:
VelocityDBExtensions
Assembly:
VelocityDBExtensions (in VelocityDBExtensions.dll) Version: 11.1.0.0 (11.1.0)
Syntax public static string ToStringDetails(
this OptimizedPersistable pObj,
SessionBase session,
bool skipArrays = true
)
<ExtensionAttribute>
Public Shared Function ToStringDetails (
pObj As OptimizedPersistable,
session As SessionBase,
Optional skipArrays As Boolean = true
) As String
public:
[ExtensionAttribute]
static String^ ToStringDetails(
OptimizedPersistable^ pObj,
SessionBase^ session,
bool skipArrays = true
)
[<ExtensionAttribute>]
static member ToStringDetails :
pObj : OptimizedPersistable *
session : SessionBase *
?skipArrays : bool
(* Defaults:
let _skipArrays = defaultArg skipArrays true
*)
-> string
Parameters
- pObj
- Type: VelocityDbOptimizedPersistable
The object extended - session
- Type: VelocityDb.SessionSessionBase
The session managing this object - skipArrays (Optional)
- Type: SystemBoolean
Indicates if string should contain detailed array data.
Return Value
Type:
StringString containing all details of this object.
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