本文整理汇总了C#中Serialization类的典型用法代码示例。如果您正苦于以下问题:C# Serialization类的具体用法?C# Serialization怎么用?C# Serialization使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Serialization类属于命名空间,在下文中一共展示了Serialization类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: WrappedSerializer
internal WrappedSerializer(Serialization.DataFormat dataFormat, string streamName, TextWriter output) : base(dataFormat, streamName)
{
this.firstCall = true;
this.textWriter = output;
Serialization.DataFormat dataFormat1 = this.format;
switch (dataFormat1)
{
case Serialization.DataFormat.Text:
{
return;
}
case Serialization.DataFormat.XML:
{
XmlWriterSettings xmlWriterSetting = new XmlWriterSettings();
xmlWriterSetting.CheckCharacters = false;
xmlWriterSetting.OmitXmlDeclaration = true;
this.xmlWriter = XmlWriter.Create(this.textWriter, xmlWriterSetting);
this.xmlSerializer = new Serializer(this.xmlWriter);
return;
}
default:
{
return;
}
}
}
示例2: WriteInstance
public override void WriteInstance( Serialization.MaterialSerializer ser, SubRenderState subRenderState,
Graphics.Pass srcPass, Graphics.Pass dstPass )
{
//TODO
//ser.WriteAttribute(4, "transform_stage");
//ser.WriteValue("ffp");
}
示例3: ObjectReferencePropertyTemplate
public ObjectReferencePropertyTemplate(Arebis.CodeGeneration.IGenerationHost _host, IZetboxContext ctx, Serialization.SerializationMembersList serializationList, string moduleNamespace, string ownInterface, string name, string implName, string eventName, string fkBackingName, string fkGuidBackingName, string referencedInterface, string referencedImplementation, string associationName, string targetRoleName, string positionPropertyName, string inverseNavigatorName, bool inverseNavigatorIsList, bool eagerLoading, bool relDataTypeExportable, bool callGetterSetterEvents, bool isCalculated, bool disableExport)
: base(_host)
{
this.ctx = ctx;
this.serializationList = serializationList;
this.moduleNamespace = moduleNamespace;
this.ownInterface = ownInterface;
this.name = name;
this.implName = implName;
this.eventName = eventName;
this.fkBackingName = fkBackingName;
this.fkGuidBackingName = fkGuidBackingName;
this.referencedInterface = referencedInterface;
this.referencedImplementation = referencedImplementation;
this.associationName = associationName;
this.targetRoleName = targetRoleName;
this.positionPropertyName = positionPropertyName;
this.inverseNavigatorName = inverseNavigatorName;
this.inverseNavigatorIsList = inverseNavigatorIsList;
this.eagerLoading = eagerLoading;
this.relDataTypeExportable = relDataTypeExportable;
this.callGetterSetterEvents = callGetterSetterEvents;
this.isCalculated = isCalculated;
this.disableExport = disableExport;
}
示例4: Override
/// <summary>
/// Overrides the existing values
/// </summary>
/// <param name="declaration"></param>
public void Override(Serialization.StyleDeclaration declaration)
{
foreach (StyleProperty property in _styleSheetDeclaration.Properties)
{
_cached[property.Name] = property.Value;
}
}
示例5: Call
private static void Call(Arebis.CodeGeneration.IGenerationHost host,
IZetboxContext ctx,
Serialization.SerializationMembersList serializationList,
Property prop, bool hasPersistentOrder, bool isList,
string collectionWrapperClass,
string listWrapperClass)
{
if (prop == null) { throw new ArgumentNullException("prop"); }
if (!isList) { throw new ArgumentOutOfRangeException("prop", "prop must be a List-valued property"); }
string name = prop.Name;
string backingName = "_" + name;
string backingCollectionType = (hasPersistentOrder ? listWrapperClass : collectionWrapperClass);
string exposedCollectionInterface = hasPersistentOrder ? "IList" : "ICollection";
string thisInterface = prop.ObjectClass.Name;
string referencedType = prop.GetElementTypeString();
string referencedCollectionEntry = prop.GetCollectionEntryFullName();
string referencedCollectionEntryImpl = referencedCollectionEntry + host.Settings["extrasuffix"] + Zetbox.API.Helper.ImplementationSuffix;
string providerCollectionType = "ObservableCollection<" + referencedCollectionEntryImpl + ">";
string underlyingCollectionName = "_" + name + "Collection";
string moduleNamespace = prop.Module.Namespace;
Call(
host, ctx, serializationList,
name, backingName, backingCollectionType, exposedCollectionInterface,
thisInterface, referencedType,
referencedCollectionEntry, referencedCollectionEntryImpl,
providerCollectionType, underlyingCollectionName, !hasPersistentOrder,
moduleNamespace,
prop.DisableExport == true);
}
示例6: InternalNetSerialize
private void InternalNetSerialize(Serialization.CrySerialize serialize, int aspect, byte profile, int flags)
{
// var serialize = new Serialization.CrySerialize();
//serialize.Handle = handle;
NetSerialize(serialize, aspect, profile, flags);
}
示例7: Main
public static void Main(string[] args)
{
var twitterops = new TwitterOperations();
var gui = new MainWindow();
var ironmq = new IronMQOperations("AppZwitschern", TokenRepository.LoadFrom("ironmq.credentials.txt"));
var serialisieren = new Serialization<Versandauftrag>();
var urlShortener = new TinyUrlOperations();
var compressor = new TextCompressor();
FlowRuntimeConfiguration.SynchronizationFactory = () => new SyncWithWPFDispatcher();
var config = new FlowRuntimeConfiguration()
.AddStreamsFrom("az.application.flows.flow", Assembly.GetExecutingAssembly())
.AddFunc<Versandauftrag, Versandauftrag>("versandauftrag_schnueren", twitterops.Versandauftrag_um_access_token_erweitern)
.AddFunc<Versandauftrag, string>("serialisieren", serialisieren.Serialize)
.AddAction<string>("enqueue", ironmq.Enqueue, true)
.AddFunc<string, string[]>("extract_urls", compressor.Extract_Urls)
.AddFunc<Tuple<string, Tuple<string,string>[]>,string>("replace_urls", compressor.Replace_Urls)
.AddFunc<IEnumerable<string>, Tuple<String,string>[]>("shorten_urls", urlShortener.ShortenMany)
.AddOperation(new AutoResetJoin<string, Tuple<string,string>[]>("join"))
.AddOperation(new Throttle("throttle", 1000))
.AddAction<string>("display_shortened_text", gui.ShortenedText).MakeSync()
.AddAction("versandstatus_anzeigen", () => gui.Versandstatus("Versendet!")).MakeSync();
using (var fr = new FlowRuntime(config)) {
fr.UnhandledException += ex => MessageBox.Show(ex.InnerException.Message);
fr.Message += Console.WriteLine;
gui.Versenden += fr.CreateEventProcessor<Versandauftrag>(".versenden");
gui.ShortenText += fr.CreateEventProcessor<string>(".shortenText");
var app = new Application { MainWindow = gui };
app.Run(gui);
}
}
示例8: InternalFullSerialize
private void InternalFullSerialize(Serialization.CrySerialize serialize)
{
//var serialize = new Serialization.CrySerialize();
//serialize.Handle = handle;
FullSerialize(serialize);
}
示例9: WrappedDeserializer
internal WrappedDeserializer(Serialization.DataFormat dataFormat, string streamName, TextReader input) : base(dataFormat, streamName)
{
if (dataFormat != Serialization.DataFormat.None)
{
this.textReader = input;
this.firstLine = this.textReader.ReadLine();
if (string.Compare(this.firstLine, Serialization.XmlCliTag, StringComparison.OrdinalIgnoreCase) == 0)
{
dataFormat = Serialization.DataFormat.XML;
}
Serialization.DataFormat dataFormat1 = this.format;
switch (dataFormat1)
{
case Serialization.DataFormat.Text:
{
return;
}
case Serialization.DataFormat.XML:
{
this.xmlReader = XmlReader.Create(this.textReader);
this.xmlDeserializer = new Deserializer(this.xmlReader);
return;
}
default:
{
return;
}
}
}
else
{
return;
}
}
示例10: AddSerialization
protected override void AddSerialization(Serialization.SerializationMembersList list, string name)
{
if (list != null)
{
if (HasDefaultValue)
{
list.Add("Serialization.SimplePropertyWithDefaultSerialization",
disableExport ? Templates.Serialization.SerializerType.Binary : Serialization.SerializerType.All,
_prop.Module.Namespace,
name,
type,
backingName,
IsSetFlagName);
}
else
{
list.Add("Serialization.SimplePropertySerialization",
disableExport ? Serialization.SerializerType.Binary : Serialization.SerializerType.All,
_prop.Module.Namespace,
name,
type,
backingName);
}
}
}
示例11: Read
public override string Read(Serialization.ISerializer serializer)
{
if (serializer.GetType() == typeof(Arch.CFramework.AppInternals.Serialization.XMLSerializer))
{
XmlDocument xml = new XmlDocument();
xml.AppendChild(xml.CreateXmlDeclaration("1.0", Encoding.UTF8.BodyName, null));
var node = xml.CreateElement("HealthCheck");
xml.AppendChild(node);
var node1 = xml.CreateElement("Healthies");
node.AppendChild(node1);
foreach (var hcb in list.ToList())
{
var n = xml.CreateElement(hcb.GetType().Name);
node1.AppendChild(n);
var n1 = xml.CreateElement("IsHealthy");
n1.InnerText = hcb.Healthy.IsHealthy.ToString();
n.AppendChild(n1);
n1 = xml.CreateElement("Message");
n1.InnerText = hcb.Healthy.Message;
n.AppendChild(n1);
n1 = xml.CreateElement("Error");
if (hcb.Healthy.Error != null)
n1.InnerText = hcb.Healthy.Error.ToString();
else
n1.InnerText = string.Empty;
n.AppendChild(n1);
}
return xml.OuterXml;
}
return base.Read(serializer);
}
示例12: OnSetState
protected override void OnSetState(Serialization.Mobile.SerializationInfo info, Core.StateMode mode)
{
base.OnSetState(info, mode);
Name = info.GetValue<string>("SilverlightPrincipal.Criteria.Name");
Password = info.GetValue<string>("SilverlightPrincipal.Criteria.Password");
ProviderType = info.GetValue<string>("SilverlightPrincipal.Criteria.ProviderType");
}
示例13: OnGetState
protected override void OnGetState(Serialization.Mobile.SerializationInfo info, Core.StateMode mode)
{
info.AddValue("SilverlightPrincipal.Criteria.Name", Name);
info.AddValue("SilverlightPrincipal.Criteria.Password", Password);
info.AddValue("SilverlightPrincipal.Criteria.ProviderType", ProviderType);
base.OnGetState(info, mode);
}
示例14: AddSerialization
protected virtual void AddSerialization(Serialization.SerializationMembersList list, string underlyingCollectionName)
{
if (list != null)
{
Serialization.CollectionSerialization.Add(list, ctx, moduleNamespace, name, underlyingCollectionName, orderByValue, disableExport);
}
}
示例15: Call
public static void Call(Arebis.CodeGeneration.IGenerationHost host,
IZetboxContext ctx, Serialization.SerializationMembersList serializationList, Property prop)
{
if (host == null) { throw new ArgumentNullException("host"); }
host.CallTemplate("Properties.NotifyingDataProperty",
ctx, serializationList, prop);
}