Właściwość IInterfaceInfo.Source —
Zwraca wartość wskazującą, czy interfejs jest źródłem — to znaczy interfejs, który nasłuchuje klientów, zamiast wywołania.
Przestrzeń nazw: Microsoft.VisualStudio.VsWizard
Zestaw: Microsoft.VisualStudio.VsWizard (w Microsoft.VisualStudio.VsWizard.dll)
Składnia
'Deklaracja
ReadOnly Property Source As Boolean
bool Source { get; }
property bool Source {
bool get ();
}
abstract Source : bool with get
function get Source () : boolean
Wartość właściwości
Typ: Boolean
true Jeśli interfejs jest źródłem; w przeciwnym razie false.
Uwagi
Interfejs źródłowy jest interfejsem, który komunikuje się do klienta, zamiast interfejsu klienta wywołuje (na przykład z punktów połączeń w języku C++).Serwer wywołuje (lub multiplexes rozmowy, jeśli interfejs umożliwia klientom kilka), a klient wykonuje program obsługi.
W danym coclass tylko jeden interfejs może być oznaczony [źródło].
Przykłady
// From the Visual C++ Member Variable wizard
function GenerateActiveXControlClassText(oTypeLib)
{
var strClassText = "";
var oInterfaces = oTypeLib.Interfaces;
var nCount = oInterfaces.Count;
var bGenerate_Array = new Array();
var Name_Array = new Array();
var Base_Array = new Array();
var i;
for (i = 0; i < nCount; i++)
{
var oInterface = oInterfaces.item(i+1);
if (oInterface.CoClass != CONTROL_TYPE.text
|| oInterface.Default == false
|| oInterface.Source == true)
continue;
Name_Array[i] = oInterface.Name;
Base_Array[i] = oInterface.Base;
bGenerate_Array[i] = true;
}
for (i = 0; i < nCount; i++)
{
if (oInterface.CoClass != CONTROL_TYPE.text
|| oInterface.Default == false
|| oInterface.Source == true)
continue;
var strBase = Base_Array[i];
if(strBase && strBase.length &&
strBase!="IDispatch" && strBase!="IUnknown")
{
for(var j=0; j< nCount; j++)
{
if(strBase == Name_Array[j])
{
bGenerate_Array[j] = false;
break;
}
}
}
}
for (i = 0; i < nCount; i++)
{
var oInterface = oInterfaces.item(i+1);
if(!bGenerate_Array[i])
{
strClassText += "// Interface: " + Name_Array[i] + " not generated, because it was a base interface for others.\n\n";
}
else if (oInterface.Type == 2
&& oInterface.CoClass == CONTROL_TYPE.text
&& oInterface.Default
&& !oInterface.Source) // einterfaceDispinterface
{
strClassText += "// ";
strClassText += Name_Array[i];
strClassText += "\r\n\r\n// Functions\r\n//\r\n\r\n";
strClassText += GetFuncText(oTypeLib, oInterface, strClassText);
}
}
return strClassText;
}
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.