BiasedBit.MinusEngine.MinusApi.MinusApi C# (CSharp) Метод

MinusApi() публичный Метод

Default constructor.
public MinusApi ( String apiKey ) : System
apiKey String The API Key assigned to your application.
Результат System
        public MinusApi(String apiKey)
        {
            #if !WINDOWS_PHONE
                // Just about as good as any other place to set this...
                System.Net.ServicePointManager.Expect100Continue = false;
            #endif
            if (String.IsNullOrEmpty(apiKey))
            {
                throw new ArgumentException("API key argument cannot be null");
            }

            this.ApiKey = apiKey;
        }