当前位置: 首页>>代码示例>>C#>>正文


C# XmlWriterDelegator.WriteStartElement方法代码示例

本文整理汇总了C#中System.Runtime.Serialization.XmlWriterDelegator.WriteStartElement方法的典型用法代码示例。如果您正苦于以下问题:C# XmlWriterDelegator.WriteStartElement方法的具体用法?C# XmlWriterDelegator.WriteStartElement怎么用?C# XmlWriterDelegator.WriteStartElement使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Runtime.Serialization.XmlWriterDelegator的用法示例。


在下文中一共展示了XmlWriterDelegator.WriteStartElement方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: WriteRootElement

 internal override void WriteRootElement(XmlWriterDelegator writer, XmlDictionaryString name, XmlDictionaryString ns)
 {
     if (object.ReferenceEquals(ns, DictionaryGlobals.SerializationNamespace))
     {
         writer.WriteStartElement("z", name, ns);
     }
     else if (((ns != null) && (ns.Value != null)) && (ns.Value.Length > 0))
     {
         writer.WriteStartElement("q", name, ns);
     }
     else
     {
         writer.WriteStartElement(name, ns);
     }
 }
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:15,代码来源:QNameDataContract.cs

示例2: WriteSystemExceptionRequiredValues

        private void WriteSystemExceptionRequiredValues(XmlWriterDelegator writer, object value, XmlObjectSerializerWriteContext context)
        {
            Dictionary<string, object> exceptionFields = GetExceptionFieldValues((Exception)value);

            object val;
            foreach (string key in exceptionFields.Keys)
            {
                if (!exceptionFields.TryGetValue(key, out val))
                    continue;

                Type fieldType;
                FieldInfo FieldFind = Globals.TypeOfException.GetField(key, BindingFlags.Instance | BindingFlags.NonPublic);
                if (FieldFind == null)
                {
                    val = null; // need to nullify because the private fields that are necessary in Exception have changed. 
                    fieldType = typeof(int); // can be any type, it doesn't matter. field type will be used to recover a contract, but the type won't be utilized.
                }
                else
                    fieldType = FieldFind.FieldType;

                string fieldDisplayName;
                if (EssentialExceptionFields.TryGetValue(key, out fieldDisplayName))
                    writer.WriteStartElement(fieldDisplayName, "");
                else
                    writer.WriteStartElement(key, "");

                DataContract fieldDataContract = context.GetDataContract(fieldType);
                if (val != null && fieldDataContract != null && !TryCheckIfNoCountIDictionary(fieldType, val))
                {
                    if (!TryWritePrimitive(fieldType, val, writer, context))
                    {
                        writer.WriteAttributeString(Globals.XsiPrefix, "type", null, "a:" + fieldDataContract.StableName.Name);
                        writer.WriteXmlnsAttribute("a", new XmlDictionary(1).Add(fieldDataContract.StableName.Namespace));
                        fieldDataContract.WriteXmlValue(writer, val, context);
                    }
                }
                else
                {
                    writer.WriteAttributeString(Globals.XsiPrefix, "nil", null, "true");
                }
                writer.WriteEndElement();
            }
        }
开发者ID:ChuangYang,项目名称:corefx,代码行数:43,代码来源:ExceptionDataContract.cs

示例3: WriteExceptionValue

        private void WriteExceptionValue(XmlWriterDelegator writer, object value, XmlObjectSerializerWriteContext context)
        {
            /*
             * Every private field present in System.Exception that is serialized in the thick framework is also serialized in this method.
             * For classes that inherit from System.Exception all public properties are serialized.
             * The reason that the Members property is not used here to get the properties to serialize is because Members contains only the properties with setters.
             */

            Type type = value.GetType();
            writer.WriteXmlnsAttribute("x", new XmlDictionary(1).Add(Globals.SchemaNamespace));
            WriteSystemExceptionRequiredValues(writer, value, context);
            PropertyInfo[] props = type.GetProperties();
            foreach (PropertyInfo prop in props)
            {
                //Properties in System.Exception are handled in the call to WriteSystemExceptionRequiredValues, we don't want to repeat these properties.
                if (PropertyIsSystemExceptionProperty(prop))
                    continue;

                writer.WriteStartElement(prop.Name, "");
                DataContract propDataContract = context.GetDataContract(prop.PropertyType);
                if (prop.GetValue(value) != null && propDataContract != null && !TryCheckIfNoCountIDictionary(prop.PropertyType, prop.GetValue(value)))
                {
                    if (!TryWritePrimitive(prop.PropertyType, prop.GetValue(value), writer, context))
                    {
                        writer.WriteAttributeString(Globals.XsiPrefix, "type", null, "a:" + propDataContract.StableName.Name);
                        writer.WriteXmlnsAttribute("a", new XmlDictionary(1).Add(propDataContract.StableName.Namespace));
                        context.SerializeWithoutXsiType(propDataContract, writer, prop.GetValue(value), prop.PropertyType.TypeHandle);
                    }
                }
                else
                {
                    writer.WriteAttributeString(Globals.XsiPrefix, "nil", null, "true");
                }
                writer.WriteEndElement();
            }
        }
开发者ID:ChuangYang,项目名称:corefx,代码行数:36,代码来源:ExceptionDataContract.cs

示例4: InternalWriteStartObject

 internal override void InternalWriteStartObject(XmlWriterDelegator writer, object graph)
 {
     if (this.rootNameRequiresMapping)
     {
         writer.WriteStartElement("a", "item", "item");
         writer.WriteAttributeString(null, "item", null, this.RootName.Value);
     }
     else
     {
         writer.WriteStartElement(this.RootName, XmlDictionaryString.Empty);
     }
 }
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:12,代码来源:DataContractJsonSerializer.cs

示例5: WriteRootElement

 internal override void WriteRootElement(XmlWriterDelegator writer, XmlDictionaryString name, XmlDictionaryString ns)
 {
     if (object.ReferenceEquals(ns, DictionaryGlobals.SerializationNamespace))
         writer.WriteStartElement(Globals.SerPrefix, name, ns);
     else if (ns != null && ns.Value != null && ns.Value.Length > 0)
         writer.WriteStartElement(Globals.ElementPrefix, name, ns);
     else
         writer.WriteStartElement(name, ns);
 }
开发者ID:noahfalk,项目名称:corefx,代码行数:9,代码来源:PrimitiveDataContract.cs

示例6: WriteXmlElement

 public override void WriteXmlElement(XmlWriterDelegator xmlWriter, object obj, XmlObjectSerializerWriteContext context, XmlDictionaryString name, XmlDictionaryString ns)
 {
     xmlWriter.WriteStartElement(name, ns);
     xmlWriter.WriteBase64((byte[])obj);
     xmlWriter.WriteEndElement();
 }
开发者ID:SGuyGe,项目名称:corefx,代码行数:6,代码来源:PrimitiveDataContract.cs

示例7: InternalWriteStartObject

 internal override void InternalWriteStartObject(XmlWriterDelegator writer, object graph)
 {
     if (_rootNameRequiresMapping)
     {
         writer.WriteStartElement("a", JsonGlobals.itemString, JsonGlobals.itemString);
         writer.WriteAttributeString(null, JsonGlobals.itemString, null, RootName.Value);
     }
     else
     {
         writer.WriteStartElement(RootName, XmlDictionaryString.Empty);
     }
 }
开发者ID:er0dr1guez,项目名称:corefx,代码行数:12,代码来源:DataContractJsonSerializer.cs

示例8: WriteRootElement

 internal virtual void WriteRootElement(XmlWriterDelegator writer, XmlDictionaryString name, XmlDictionaryString ns)
 {
     if (object.ReferenceEquals(ns, DictionaryGlobals.SerializationNamespace) && !this.IsPrimitive)
     {
         writer.WriteStartElement("z", name, ns);
     }
     else
     {
         writer.WriteStartElement(name, ns);
     }
 }
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:11,代码来源:DataContract.cs

示例9: WriteQName

 public override void WriteQName(XmlWriterDelegator xmlWriter, XmlQualifiedName value, XmlDictionaryString name, XmlDictionaryString ns)
 {
     if (value == null)
         WriteNull(xmlWriter, typeof(XmlQualifiedName), true/*isMemberTypeSerializable*/, name, ns);
     else
     {
         if (ns != null && ns.Value != null && ns.Value.Length > 0)
             xmlWriter.WriteStartElement(Globals.ElementPrefix, name, ns);
         else
             xmlWriter.WriteStartElement(name, ns);
         if (!OnHandleReference(xmlWriter, value, false /*canContainCyclicReference*/))
             xmlWriter.WriteQName(value);
         xmlWriter.WriteEndElement();
     }
 }
开发者ID:krytht,项目名称:DotNetReferenceSource,代码行数:15,代码来源:XmlObjectSerializerWriteContextComplex.cs

示例10: ReflectionWriteStartElement

        public void ReflectionWriteStartElement(XmlWriterDelegator xmlWriter, Type type, XmlDictionaryString ns, string namespaceLocal, string nameLocal, int nameIndex)
        {
            bool needsPrefix = NeedsPrefix(type, ns);

            if (needsPrefix)
            {
                xmlWriter.WriteStartElement(Globals.ElementPrefix, nameLocal, namespaceLocal);
            }
            else
            {
                xmlWriter.WriteStartElement(nameLocal, namespaceLocal);
            }
        }
开发者ID:swaroop-sridhar,项目名称:corefx,代码行数:13,代码来源:ReflectionXmlFormatWriter.cs

示例11: WriteJsonNameWithMapping

 internal static void WriteJsonNameWithMapping(XmlWriterDelegator xmlWriter, XmlDictionaryString[] memberNames, int index)
 {
     xmlWriter.WriteStartElement("a", "item", "item");
     xmlWriter.WriteAttributeString(null, "item", null, memberNames[index].Value);
 }
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:5,代码来源:XmlObjectSerializerWriteContextComplexJson.cs


注:本文中的System.Runtime.Serialization.XmlWriterDelegator.WriteStartElement方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。