MatchesDescription() публичный Метод

public MatchesDescription ( string uuid ) : bool
uuid string
Результат bool
    public void handleAnnounceClient(SyphonClientObject client)
    {
        if(!client.MatchesDescription(clientAppName, clientName)){
            return; //if the announced client was not this client, ignore it.
        }

        if(clientObject == null){
            //if the client had been previously destroyed or not initialized, re-init now.
            Start();
        }
        else if(clientObject != null){
            ApplyTexture();
        }
    }
Пример #2
0
    public void handleAnnounceClient(SyphonClientObject client)
    {
        if (!client.MatchesDescription(clientAppName, clientName))
        {
            return;             //if the announced client was not this client, ignore it.
        }

        if (clientObject == null)
        {
            //if the client had been previously destroyed or not initialized, re-init now.
            Start();
        }
        else if (clientObject != null)
        {
            ApplyTexture();
        }
    }