Właściwość IElement.OwnedComments —
Pobiera uwag zawartych w tym elemencie (połączone z nim komentarze).
Przestrzeń nazw: Microsoft.VisualStudio.Uml.Classes
Zestaw: Microsoft.VisualStudio.Uml.Interfaces (w Microsoft.VisualStudio.Uml.Interfaces.dll)
Składnia
'Deklaracja
ReadOnly Property OwnedComments As IEnumerable(Of IComment)
IEnumerable<IComment> OwnedComments { get; }
property IEnumerable<IComment^>^ OwnedComments {
IEnumerable<IComment^>^ get ();
}
abstract OwnedComments : IEnumerable<IComment> with get
function get OwnedComments () : IEnumerable<IComment>
Wartość właściwości
Typ: IEnumerable<IComment>
Uwagi
Aby uzyskać komentarze, które są połączone z elementem, należy użyć:
IEnumerable <IComment> comments =
store.AllInstances<IComment>()
.Where(eachComment =>
eachComment.AnnotatedElements.Contains(element));
Zabezpieczenia programu .NET Framework
- Pełne zaufanie do bezpośredniego wywołującego. Tego elementu członkowskiego nie można używać w kodzie częściowo zaufanym. Aby uzyskać więcej informacji, zobacz Używanie bibliotek pochodzących z częściowo zaufanego kodu.