This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ArcValidationTests.cs | |
// | |
// Author: Jeffrey Stedfast <[email protected]> | |
// | |
// Copyright (c) 2013-2019 Xamarin Inc. (www.xamarin.com) | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal | |
// in the Software without restriction, including without limitation the rights |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "Uninstalling the Xamarin Installer..." | |
rm -rf ~/Library/Caches/XamarinInstaller/ | |
rm -rf ~/Library/Caches/VisualStudioInstaller/ | |
rm -rf ~/Library/Logs/XamarinInstaller/ | |
rm -rf ~/Library/Logs/VisualStudioInstaller/ | |
rm -rf ~/Library/Preferences/Xamarin/ | |
echo "Uninstalling Xamarin.Android..." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// first we need to base64 decode the content of the existing pkcs7-mime part | |
var content = new MemoryStream (); | |
pkcs7.Content.DecodeTo (content); | |
content.Position = 0; | |
// now we create a new pkcs7-mime part with the proper smime-type parameter | |
pkcs7 = new ApplicationPkcs7Mime (SecureMimeType.EnvelopedData, content); | |
// now decrypt it: | |
var decrypted = pkcs7.Decrypt (ctx); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using Org.BouncyCastle.Crypto; | |
using Org.BouncyCastle.OpenSsl; | |
namespace DkimKeyLocatorExample | |
{ | |
public class Program | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ReplyVisitor.cs | |
// | |
// Author: Jeffrey Stedfast <[email protected]> | |
// | |
// Copyright (c) 2016 Xamarin Inc. (www.xamarin.com) | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal | |
// in the Software without restriction, including without limitation the rights |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// HtmlToText.cs | |
// | |
// Author: Jeffrey Stedfast <[email protected]> | |
// | |
// Copyright (c) 2016 Xamarin Inc. (www.xamarin.com) | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal | |
// in the Software without restriction, including without limitation the rights |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CustomOrdinalIgnoreCaseComparer : IEqualityComparer<string> | |
{ | |
static int ToLower (int c) | |
{ | |
if (c >= 0x41 && c <= 0x5A) | |
return c + 0x20; | |
return c; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Text; | |
namespace Blah { | |
public class Program | |
{ | |
public static void Main (string[] args) | |
{ | |
const string base36 = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; | |
ulong value = ulong.MaxValue; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// WARNING | |
// | |
// This file has been generated automatically by Xamarin Studio from the outlets and | |
// actions declared in your storyboard file. | |
// Manual changes to this file will not be maintained. | |
// | |
using Foundation; | |
using System; | |
using System.CodeDom.Compiler; | |
using UIKit; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="4510" systemVersion="13B42" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES"> | |
<dependencies> | |
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="3742"/> | |
</dependencies> | |
<objects> | |
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="MessageListTableViewCell"> | |
<connections> | |
<outlet property="FromLabel" destination="7" id="name-outlet-7"/> | |
<outlet property="SubjectLabel" destination="4" id="name-outlet-4"/> |