ExpansionProvider.GetFieldValue Method

Returns the value of the specified field.

Namespace:  Microsoft.VisualStudio.Package
Assembly:  Microsoft.VisualStudio.Package.LanguageService.9.0 (in Microsoft.VisualStudio.Package.LanguageService.9.0.dll)

Syntax

'Declaration
Public Overridable Function GetFieldValue ( _
    field As String, _
    <OutAttribute> ByRef value As String _
) As Boolean
'Usage
Dim instance As ExpansionProvider 
Dim field As String 
Dim value As String 
Dim returnValue As Boolean 

returnValue = instance.GetFieldValue(field, _
    value)
public virtual bool GetFieldValue(
    string field,
    out string value
)
public:
virtual bool GetFieldValue(
    String^ field, 
    [OutAttribute] String^% value
)
public function GetFieldValue(
    field : String, 
    value : String
) : boolean

Parameters

  • field
    Type: System.String

    [in] A string containing the name of the field for which to get a value.

  • value
    Type: System.String%

    [out] A string containing the value of the field.

Return Value

Type: System.Boolean
If there is an expansion session in progress and the specified field exists and contains a value, returns true; otherwise, returns false.

Remarks

A field is a part of the snippet template for which different values can be substituted, possibly from an expansion function.

The base method calls the GetFieldValue method on the IVsExpansionSession object that was obtained in the InsertSpecificExpansion or InsertNamedExpansion methods.

.NET Framework Security

See Also

Reference

ExpansionProvider Class

ExpansionProvider Members

Microsoft.VisualStudio.Package Namespace