コード例 #1
0
ファイル: FFDocument.cs プロジェクト: Nokkes/Powershell
        public string GetPropertyValue(string propertyName)
        {
            var command = string.Format("{0}.{1};", DocumentReference, propertyName);

            if (propertyName == Document.ERROR_PROPERTY_NAME)
            {
                return(ClientPort.WriteAndReadIgnoreError(command));
            }

            return(ClientPort.WriteAndRead(command));
        }