DotAmf.ServiceModel.Dispatcher.AmfEndpointContext.IsContractRegistered C# (CSharp) Method

IsContractRegistered() private method

Check if type is registered as a data contract.
private IsContractRegistered ( Type type ) : bool
type System.Type
return bool
        private bool IsContractRegistered(Type type)
        {
            if (type == null) throw new ArgumentNullException("type");

            return _contracts.Contains(type);
        }