PersistenceParticipant.PublishValues(IDictionary<XName,Object>) Metod

Definition

Värden anropar den här metoden och skickar alla inlästa värden i InstanceData samlingen (ifyllda med parametern LoadWorkflowCommand eller LoadWorkflowByInstanceKeyCommand) som en ordlisteparameter.

protected:
 virtual void PublishValues(System::Collections::Generic::IDictionary<System::Xml::Linq::XName ^, System::Object ^> ^ readWriteValues);
protected virtual void PublishValues(System.Collections.Generic.IDictionary<System.Xml.Linq.XName,object> readWriteValues);
abstract member PublishValues : System.Collections.Generic.IDictionary<System.Xml.Linq.XName, obj> -> unit
override this.PublishValues : System.Collections.Generic.IDictionary<System.Xml.Linq.XName, obj> -> unit
Protected Overridable Sub PublishValues (readWriteValues As IDictionary(Of XName, Object))

Parametrar

readWriteValues
IDictionary<XName,Object>

Läs- och skrivvärdena som lästes in från beständighetsarkivet. Den här ordlistan motsvarar ordlistan med läs- och skrivvärden som sparats i det senaste beständighetsavsnittet.

Exempel

Följande kodexempel visar hur du använder PublishValues i en klass som härleds från PersistenceParticipant. Det här exemplet är från exemplet Persistence Participants (Beständighetsdeltagare).

public class StepCountExtension : PersistenceParticipant
{
    static XNamespace stepCountNamespace = XNamespace.Get("urn:schemas-microsoft-com:Microsoft.Samples.WF/WorkflowInstances/properties");
    static XName currentCountName = stepCountNamespace.GetName("CurrentCount");

    int currentCount;

    public int CurrentCount
    {
        get
        {
            return this.currentCount;
        }
    }

    internal void IncrementStepCount()
    {
        this.currentCount += 1;
    }

    protected override void CollectValues(out IDictionary<XName, object> readWriteValues, out IDictionary<XName, object> writeOnlyValues)
    {
        readWriteValues = new Dictionary<XName, object>(1) { { currentCountName, this.currentCount } };
        writeOnlyValues = null;
    }

    protected override void PublishValues(IDictionary<XName, object> readWriteValues)
    {
        object loadedData;
        if (readWriteValues.TryGetValue(currentCountName, out loadedData))
        {
            this.currentCount = (int)loadedData;
        }
    }
}

Gäller för