XdsObjects Help file
XdsObjects Namespace / XdsMultiString Class / Strings Property



In This Topic
    Strings Property
    In This Topic
    The list of strings held in this object.
    Syntax
    Public Property Strings As List(Of String)
    Dim instance As XdsMultiString
    Dim value As List(Of String)
     
    instance.Strings = value
     
    value = instance.Strings
    public List<string> Strings {get; set;}
    public:
    property List<String^>^ Strings {
       List<String^>^ get();
       void set (    List<String^>^ value);
    }
    Remarks
    Whilst systems creating data can use single strings, those consuming data must always be prepared for the possibility of multi-valued data, and so this method is deliberately the only way to access the data, to remind developers of this requirement.
    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