CodeProperty.Getter (Propiedad)
Establece u obtiene un objeto que define el código necesario para devolver una propiedad.
Espacio de nombres: EnvDTE
Ensamblado: EnvDTE (en EnvDTE.dll)
Sintaxis
'Declaración
Property Getter As CodeFunction
CodeFunction Getter { get; set; }
property CodeFunction^ Getter {
CodeFunction^ get ();
void set (CodeFunction^ value);
}
abstract Getter : CodeFunction with get, set
function get Getter () : CodeFunction
function set Getter (value : CodeFunction)
Valor de propiedad
Tipo: EnvDTE.CodeFunction
Objeto CodeFunction.
Comentarios
Getter devuelve la función de código, si la hay, que hace las veces de captador en esta propiedad.
[!NOTA]
Esta propiedad es de sólo lectura para los elementos de código fuente de Visual Basic.
Además, los valores de los elementos de modelo de código como clases, structs, funciones, atributos, delegados, etc., pueden ser no deterministas una vez realizados determinados tipos de modificaciones; esto significa que no se puede confiar en que sus valores se mantengan siempre igual.Para obtener más información, vea la sección Los valores de elementos de modelo de código pueden cambiar, en Detectar código utilizando el modelo de código (Visual Basic).
Ejemplos
Sub GetterExample(ByVal dte As DTE2)
' Before running this example, open a code document from a project
' and place the insertion point inside a property definition.
Try
' Retrieve the CodeProperty at the insertion point.
Dim sel As TextSelection = _
CType(dte.ActiveDocument.Selection, TextSelection)
Dim prop As CodeProperty = _
CType(sel.ActivePoint.CodeElement( _
vsCMElement.vsCMElementProperty), CodeProperty)
' Display the source code for the property getter.
Dim gttr As CodeFunction = prop.Getter
Dim start As TextPoint = gttr.GetStartPoint()
Dim finish As TextPoint = gttr.GetEndPoint()
Dim src As String = start.CreateEditPoint().GetText(finish)
MsgBox(prop.Name & "'s getter source code:" & vbCrLf & _
vbCrLf & src)
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
public void GetterExample(DTE2 dte)
{
// Before running this example, open a code document from a project
// and place the insertion point inside a property definition.
try
{
// Retrieve the CodeProperty at the insertion point.
TextSelection sel =
(TextSelection)dte.ActiveDocument.Selection;
CodeProperty prop =
(CodeProperty)sel.ActivePoint.get_CodeElement(
vsCMElement.vsCMElementProperty);
// Display the source code for the property getter.
CodeFunction getter = prop.Getter;
TextPoint start = getter.GetStartPoint(vsCMPart.vsCMPartWhole);
TextPoint finish = getter.GetEndPoint(vsCMPart.vsCMPartWhole);
string src = start.CreateEditPoint().GetText(finish);
MessageBox.Show(prop.Name + "'s getter source code:\n\n" +
src);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
Seguridad de .NET Framework
- Plena confianza para el llamador inmediato. Un código de confianza parcial no puede utilizar este miembro. Para obtener más información, vea Utilizar bibliotecas de código que no es de plena confianza.
Vea también
Referencia
Otros recursos
Cómo: Compilar y ejecutar los ejemplos de código del modelo de objetos de automatización