コード例 #1
0
 internal PublicationUpdateOperationHandler(string publicationName, string variableName)
 {
     this._operationType   = DPE_GlobalDefinitions.publicationUpdateOperationType.dataReset;
     this._data            = null;
     this._variableName    = variableName;
     this._publicationName = publicationName;
 }
コード例 #2
0
                private bool disposedValue = false;                 // To detect redundant calls


                internal PublicationUpdateOperationHandler(DPE_PublicationData data)
                {
                    this._operationType   = DPE_GlobalDefinitions.publicationUpdateOperationType.dataUpdate;
                    this._data            = data;
                    this._variableName    = data.VariableName;
                    this._publicationName = data.PublicationName;
                }
コード例 #3
0
 internal PublicationUpdateOperationHandler(string variableName, CustomSortedList value)
 {
     this._operationType = DPE_GlobalDefinitions.publicationUpdateOperationType.dataUpdate;
     this._value         = value;
     this._variableName  = variableName;
 }