ServerInfo Constructor
See Also 
SourceCode.SmartObjects.Client Namespace > ServerInfo Class : ServerInfo Constructor



name
version
ticks
methods

Glossary Item Box

Syntax

Visual Basic (Declaration)  
Public Function New( _
   ByVal name As String, _
   ByVal version As String, _
   ByVal ticks As Long, _
   ByVal methods As List(Of String) _
)
Visual Basic (Usage) Copy Code
Dim name As String
Dim version As String
Dim ticks As Long
Dim methods As List(Of String)
 
Dim instance As New ServerInfo(name, version, ticks, methods)
C#  
public ServerInfo( 
   string name,
   string version,
   long ticks,
   List<string> methods
)
C++/CLI  
public:
ServerInfo( 
   String^ name,
   String^ version,
   int64 ticks,
   List<String^>^ methods
)

Parameters

name
version
ticks
methods

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also