CHAOS.Portal.Client.MCM.Extensions.MetadataSchemaExtension.Create C# (CSharp) Method

Create() public method

public Create ( string name, System.Xml.Linq.XElement schemaXml, System.Guid guid = null ) : IServiceCallState>
name string
schemaXml System.Xml.Linq.XElement
guid System.Guid
return IServiceCallState>
		public IServiceCallState<PagedResult<MetadataSchema>> Create(string name, XElement schemaXml, Guid? guid = null)
		{
			return CallService<PagedResult<MetadataSchema>>(HTTPMethod.POST, name, schemaXml, guid);
		}
MetadataSchemaExtension