Core\CSharp\System\Windows\DataFormats.cs (21)
125index = _formatList.Add(new DataFormat(format, formatId));
418index = _formatList.Add(new DataFormat(sb.ToString(), id));
445_formatList.Add(new DataFormat(UnicodeText, NativeMethods.CF_UNICODETEXT));
446_formatList.Add(new DataFormat(Text, NativeMethods.CF_TEXT));
447_formatList.Add(new DataFormat(Bitmap, NativeMethods.CF_BITMAP));
448_formatList.Add(new DataFormat(MetafilePicture, NativeMethods.CF_METAFILEPICT));
449_formatList.Add(new DataFormat(EnhancedMetafile, NativeMethods.CF_ENHMETAFILE));
450_formatList.Add(new DataFormat(Dif, NativeMethods.CF_DIF));
451_formatList.Add(new DataFormat(Tiff, NativeMethods.CF_TIFF));
452_formatList.Add(new DataFormat(OemText, NativeMethods.CF_OEMTEXT));
453_formatList.Add(new DataFormat(Dib, NativeMethods.CF_DIB));
454_formatList.Add(new DataFormat(Palette, NativeMethods.CF_PALETTE));
455_formatList.Add(new DataFormat(PenData, NativeMethods.CF_PENDATA));
456_formatList.Add(new DataFormat(Riff, NativeMethods.CF_RIFF));
457_formatList.Add(new DataFormat(WaveAudio, NativeMethods.CF_WAVE));
458_formatList.Add(new DataFormat(SymbolicLink, NativeMethods.CF_SYLK));
459_formatList.Add(new DataFormat(FileDrop, NativeMethods.CF_HDROP));
460_formatList.Add(new DataFormat(Locale, NativeMethods.CF_LOCALE));
464_formatList.Add(new DataFormat(Xaml,xamlFormatId));
473_formatList.Add(new DataFormat(ApplicationTrust, applicationTrustFormatId));
480_formatList.Add(new DataFormat(System.Windows.Ink.StrokeCollection.InkSerializedFormat,
src\Framework\System\Windows\Documents\FixedTextContainer.cs (1)
500lfs.Add(fh);
src\Framework\System\Windows\Markup\ParserStack.cs (1)
77Add(o);
net\System\Net\_FtpControlStream.cs (23)
476commandList.Add(new PipelineEntry(FormatFtpCommand("AUTH", "TLS")));
510commandList.Add(new PipelineEntry(FormatFtpCommand("USER", domainUserName)));
511commandList.Add(new PipelineEntry(FormatFtpCommand("PASS", password), PipelineEntryFlags.DontLogParameter));
518commandList.Add(new PipelineEntry(FormatFtpCommand("PBSZ", "0")));
519commandList.Add(new PipelineEntry(FormatFtpCommand("PROT", "P")));
522commandList.Add(new PipelineEntry(FormatFtpCommand("OPTS", "utf8 on")));
523commandList.Add(new PipelineEntry(FormatFtpCommand("PWD", null)));
552commandList.Add(new PipelineEntry(FormatFtpCommand("CWD", m_LoginDirectory), PipelineEntryFlags.UserCommand));
560commandList.Add(new PipelineEntry(FormatFtpCommand("CWD", requestDirectory), PipelineEntryFlags.UserCommand));
565commandList.Add(new PipelineEntry(FormatFtpCommand("MDTM", requestPath)));
574commandList.Add(new PipelineEntry(FormatFtpCommand("TYPE", requestedTypeSetting)));
580commandList.Add(new PipelineEntry(FormatFtpCommand(passiveCommand, null), PipelineEntryFlags.CreateDataConnection));
584commandList.Add(new PipelineEntry(FormatFtpCommand(portCommand, GetPortCommandLine(request))));
591commandList.Add(new PipelineEntry(FormatFtpCommand("REST", request.CacheProtocol.Validator.CacheEntry.StreamSize.ToString(CultureInfo.InvariantCulture))));
595commandList.Add(new PipelineEntry(FormatFtpCommand("REST", request.ContentOffset.ToString(CultureInfo.InvariantCulture))));
601commandList.Add(new PipelineEntry(FormatFtpCommand("SIZE", requestPath)));
602commandList.Add(new PipelineEntry(FormatFtpCommand("MDTM", requestPath)));
623commandList.Add(new PipelineEntry(FormatFtpCommand("RNFR", baseDir + requestFilename), flags));
635commandList.Add(new PipelineEntry(FormatFtpCommand("RNTO", renameTo), flags));
639commandList.Add(new PipelineEntry(FormatFtpCommand(request.Method, string.Empty), flags));
643commandList.Add(new PipelineEntry(FormatFtpCommand(request.Method, requestFilename), flags));
647commandList.Add(new PipelineEntry(FormatFtpCommand(request.Method, requestPath), flags));
652commandList.Add(new PipelineEntry(FormatFtpCommand("QUIT", null)));
UI\WebControls\DetailsView.cs (4)
1640_rowsArray.Add(CreateRow(0, DataControlRowType.EmptyDataRow, DataControlRowState.Normal, null, rows, null));
1780rowsArray.Add(CreateRow(dataRowIndex, rowType, rowState, field, rows, null));
1831fieldsArray.Add(f);
1849fieldsArray.Add(commandField);