iTextSharp.xmp.XmpPathFactory.AssertFieldNs C# (CSharp) Method

AssertFieldNs() private static method

ParameterAsserts that a struct field namespace is set.
Struct field schema is null or empty
private static AssertFieldNs ( string fieldNs ) : void
fieldNs string a struct field namespace
return void
        private static void AssertFieldNs(string fieldNs) {
            if (string.IsNullOrEmpty(fieldNs)) {
                throw new XmpException("Empty field namespace URI", XmpError.BADSCHEMA);
            }
        }