0

With OpenCMIS, I would use mydoc.getType().

What is the equivalent with DotCMIS?
mydoc.GetType() does not work, because GetType is a method of Object in mscorlib.dll

Nicolas Raoul
  • 58,567
  • 58
  • 222
  • 373

1 Answers1

0

Use this: mydoc.ObjectType

This is one of the rare cases where DotCMIS naming differs from OpenCMIS naming.

Nicolas Raoul
  • 58,567
  • 58
  • 222
  • 373