本文整理匯總了C#中System.Xml.Schema.XmlSchemaObject.GetSchemaName方法的典型用法代碼示例。如果您正苦於以下問題:C# XmlSchemaObject.GetSchemaName方法的具體用法?C# XmlSchemaObject.GetSchemaName怎麽用?C# XmlSchemaObject.GetSchemaName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Xml.Schema.XmlSchemaObject
的用法示例。
在下文中一共展示了XmlSchemaObject.GetSchemaName方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: GetTopicLinkUri
private string GetTopicLinkUri(TopicType type, string objNamespace, XmlSchemaObject obj)
{
if (type == TopicType.Namespace)
return objNamespace ?? string.Empty;
var isGlobal = obj.Parent is XmlSchema;
var parent = _topicUriStack.Peek();
switch (type)
{
case TopicType.Schema:
return parent + "#" + obj.GetSchemaName();
case TopicType.Element:
return isGlobal
? parent + "#E/" + ((XmlSchemaElement)obj).QualifiedName.Name
: parent + "/" + ((XmlSchemaElement)obj).QualifiedName.Name;
case TopicType.Attribute:
return isGlobal
? parent + "#A/" + ((XmlSchemaAttribute)obj).QualifiedName.Name
: parent + "/@" + ((XmlSchemaAttribute)obj).QualifiedName.Name;
case TopicType.AttributeGroup:
return parent + "#AG/" + ((XmlSchemaAttributeGroup)obj).QualifiedName.Name;
case TopicType.Group:
return parent + "#G/" + ((XmlSchemaGroup)obj).QualifiedName.Name;
case TopicType.SimpleType:
case TopicType.ComplexType:
return parent + "#T/" + ((XmlSchemaType)obj).QualifiedName.Name;
default:
throw ExceptionBuilder.UnhandledCaseLabel(type);
}
}
示例2: GetTopicLinkIdUri
private static string GetTopicLinkIdUri(TopicType type, XmlSchemaObject obj)
{
if (type == TopicType.Namespace ||
type == TopicType.Schema)
{
return null;
}
var annotated = (XmlSchemaAnnotated)obj;
if (string.IsNullOrEmpty(annotated.Id))
return null;
var targetNamespace = obj.GetSchema().TargetNamespace;
var schemaName = obj.GetSchemaName();
return string.Format("{0}#{1}#{2}", targetNamespace, schemaName, annotated.Id);
}