[This is preliminary documentation and is subject to change.]

Gets item of SharedSynonymList with given key. Creates new item if given key does not exists.

Namespace: Tools.WindowsT.FormsT
Assembly: Tools.Windows (in Tools.Windows.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
protected static List<KeyValuePair<string[], string[]>> GetSharedSynonymsList(
	string Name
)
Visual Basic
Protected Shared Function GetSharedSynonymsList ( _
	Name As String _
) As List(Of KeyValuePair(Of String(), String()))
Visual C++
protected:
static List<KeyValuePair<array<String^>^, array<String^>^>>^ GetSharedSynonymsList(
	String^ Name
)
F#
static member GetSharedSynonymsList : 
        Name:string -> List<KeyValuePair<string[], string[]>> 
JScript
protected static function GetSharedSynonymsList(
	Name : String
) : List<KeyValuePair<String[], String[]>>

Parameters

Name
Type: System..::..String
Key of item to be returned

Return Value

Item form SharedSynonymList with given key. If such key is not presents adds an empty collection for it. If Name is Empty or null returns null.

See Also