本文整理汇总了C#中TextBlock.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# TextBlock.ToString方法的具体用法?C# TextBlock.ToString怎么用?C# TextBlock.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TextBlock
的用法示例。
在下文中一共展示了TextBlock.ToString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Execute
public bool Execute()
{
Uri uri = _uriString.ToUri("The from URI was invalid");
IInboundTransport fromTransport = Program.Transports.GetTransport(uri);
var text = new TextBlock()
.BeginBlock("Peek URI: " + uri, "");
int peekCount = 0;
fromTransport.Receive(receiveContext =>
{
if (peekCount >= _count)
return null;
var body = Encoding.UTF8.GetString(receiveContext.BodyStream.ReadToEnd());
text.BeginBlock("MessageId: " + receiveContext.MessageId ?? "", peekCount)
.Body(body)
.EndBlock();
peekCount++;
return null;
}, TimeSpan.Zero);
_log.Info(text.ToString());
return true;
}
示例2: Execute
public bool Execute()
{
Uri uri = _uriString.ToUri("The from URI was invalid");
AbsolutePathName fullPath = PathName.GetAbsolutePathName(_name, Environment.CurrentDirectory);
_log.DebugFormat("Using output path name: {0}", fullPath);
string directoryName = Path.GetDirectoryName(fullPath.GetPath());
if (!System.IO.Directory.Exists(directoryName))
System.IO.Directory.CreateDirectory(directoryName);
IInboundTransport fromTransport = Program.Transports.GetTransport(uri);
ITextBlock text = new TextBlock()
.BeginBlock("Save messages from URI: " + uri, "");
int lastCount;
int saveCount = 0;
do
{
lastCount = saveCount;
fromTransport.Receive(receiveContext =>
{
if (saveCount >= _count)
return null;
string body = Encoding.UTF8.GetString(receiveContext.BodyStream.ReadToEnd());
text.BodyFormat("Message-Id: {0}", receiveContext.MessageId ?? "");
WriteMessageToFile(fullPath.ToString(), receiveContext, body);
saveCount++;
if (_remove)
return context => { };
return null;
}, TimeSpan.Zero);
} while (_remove && saveCount < _count && saveCount != lastCount);
_log.Info(text.ToString());
return true;
}