VCCodeFunction.IsShared - свойство
Gets or sets a value indicating whether or not the item is statically defined, that is, if the item is common to all instances of this object type, or only to this object specifically.
Пространство имен: Microsoft.VisualStudio.VCCodeModel
Сборка: Microsoft.VisualStudio.VCCodeModel (в Microsoft.VisualStudio.VCCodeModel.dll)
Синтаксис
'Декларация
Property IsShared As Boolean
'Применение
Dim instance As VCCodeFunction
Dim value As Boolean
value = instance.IsShared
instance.IsShared = value
bool IsShared { get; set; }
property bool IsShared {
bool get ();
void set (bool value);
}
function get IsShared () : boolean
function set IsShared (value : boolean)
Значение свойства
Тип: System.Boolean
true if the method is shared, false if otherwise.
Заметки
IsShared returns or sets whether the method is associated with a class or with instances of a class. Setting this might yield language-dependent errors, and even if IsShared returns successfully, it does not mean the resulting code change compiles successfully.
Разрешения
- Полное доверие для непосредственно вызывающего метода. Этот член не может быть использован частично доверенным кодом. Дополнительные сведения см. в разделе Using Libraries from Partially Trusted Code.
См. также
Основные понятия
How to: Compile and Run the Automation Object Model Code Examples